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

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