mirror of
https://github.com/go-gitea/gitea
synced 2024-11-04 13:19:17 +01:00
11 lines
114 B
Go
11 lines
114 B
Go
// +build redis
|
|
|
|
package base
|
|
|
|
import (
|
|
_ "github.com/gogits/cache/redis"
|
|
)
|
|
|
|
func init() {
|
|
EnableRedis = true
|
|
}
|