summaryrefslogtreecommitdiffstats
path: root/modules/base/base_redis.go
blob: 42430df77414394ce2bd9693b9b15be2e11a8fee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// +build redis

package base

import (
	_ "github.com/gogits/cache/redis"
	_ "github.com/gogits/session/redis"
)

func init() {
	EnableRedis = true
}