mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-05 06:43:16 +00: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
|
|
}
|