0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-09-09 19:01:37 +02:00
gitea/modules/base/base_redis.go

13 lines
151 B
Go
Raw Normal View History

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