mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-04 08:17:24 -05:00
12 lines
123 B
Go
12 lines
123 B
Go
// +build memcache
|
|
|
|
package base
|
|
|
|
import (
|
|
_ "github.com/gogits/cache/memcache"
|
|
)
|
|
|
|
func init() {
|
|
EnableMemcache = true
|
|
}
|