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