Nexus/pkg/nex/cachekit/adaptar.go

10 lines
173 B
Go

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