7 lines
153 B
Python
7 lines
153 B
Python
import redis
|
|
from config import REDIS_HOST, REDIS_PORT
|
|
|
|
redis_client = redis.StrictRedis(
|
|
host=REDIS_HOST, port=REDIS_PORT, decode_responses=False
|
|
)
|