mirror of
https://gitea.com/gitea/gitea-mirror.git
synced 2026-03-27 23:25:59 +00: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
|
|
}
|