package redis import ( "github.com/redis/go-redis/v9" ) type Cache struct { rdb *redis.Client } func New() *Cache { return &Cache{} }