mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +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
 | 
						|
}
 |