This repository has been archived on 2025-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
Nexus/pkg/nex/cachekit/adaptar.go
2025-03-29 15:02:25 +08:00

10 lines
171 B
Go

package cachekit
import (
redis_store "github.com/eko/gocache/store/redis/v4"
)
func (c *Conn) GoCache() *redis_store.RedisStore {
return redis_store.NewRedis(c.Rd)
}