redis.go 280 B
package entity
import (
"context"
"fmt"
"os"
"query-service/pkg/logger"
"github.com/go-redis/redis/v8"
)
// RedisClient is the Redis client used throughout the service
var RedisClient *redis.Client
// NewRedisClient creates a new redis client
func NewRedisClient() {
}