mirror of
https://github.com/gogs/gogs.git
synced 2025-12-20 23:30:00 +01:00
12 lines
114 B
Go
12 lines
114 B
Go
|
|
// +build redis
|
||
|
|
|
||
|
|
package base
|
||
|
|
|
||
|
|
import (
|
||
|
|
_ "github.com/gogits/cache/redis"
|
||
|
|
)
|
||
|
|
|
||
|
|
func init() {
|
||
|
|
EnableRedis = true
|
||
|
|
}
|