1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-11-04 08:17:24 -05:00
gitea/modules/base/base_redis.go

13 lines
151 B
Go
Raw Normal View History

2014-04-21 06:54:07 -04:00
// +build redis
package base
import (
_ "github.com/gogits/cache/redis"
2014-04-22 03:41:47 -04:00
_ "github.com/gogits/session/redis"
2014-04-21 06:54:07 -04:00
)
func init() {
EnableRedis = true
}