Something went wrong. Try again.
Monorepo for Tangled
Something went wrong. Try again.
Go
at test-pr-link
123456789101112131415package cache
import "github.com/redis/go-redis/v9"
type Cache struct { *redis.Client}
func New(addr string) *Cache { rdb := redis.NewClient(&redis.Options{ Addr: addr, }) return &Cache{rdb}}