8 lines
101 B
Go
8 lines
101 B
Go
//go:build !redis
|
|
|
|
package cache
|
|
|
|
func NewRedis(addr, pass string) Cache {
|
|
panic("not tag redis")
|
|
}
|