recipes2/internal/storage/redis/redis.go

14 lines
123 B
Go
Raw Normal View History

2024-01-16 21:10:29 +02:00
package redis
import (
"github.com/redis/go-redis/v9"
)
type Cache struct {
rdb *redis.Client
}
func New() Cache {
}