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)
}