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