recipes2/internal/storage/redis/redis.go

14 lines
123 B
Go

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