mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-05 06:43:16 +00:00
13 lines
151 B
Go
13 lines
151 B
Go
// +build redis
|
|
|
|
package base
|
|
|
|
import (
|
|
_ "github.com/gogits/cache/redis"
|
|
_ "github.com/gogits/session/redis"
|
|
)
|
|
|
|
func init() {
|
|
EnableRedis = true
|
|
}
|