recipes2/internal/cache_provider/redis/redis.go

14 lines
140 B
Go

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