12 lines
114 B
Go
12 lines
114 B
Go
|
// +build redis
|
||
|
|
||
|
package base
|
||
|
|
||
|
import (
|
||
|
_ "github.com/gogits/cache/redis"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
EnableRedis = true
|
||
|
}
|