TinySkin/db/cache/no_redis.go
thehrz 145bb045e9
Some checks failed
CI / deploy (push) Failing after 2m53s
fork from xmdhs/authlib-skin
2025-01-24 16:57:58 +08:00

8 lines
101 B
Go

//go:build !redis
package cache
func NewRedis(addr, pass string) Cache {
panic("not tag redis")
}