mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 02:35:14 +00:00
9 lines
185 B
Python
9 lines
185 B
Python
import redis
|
|
from django.conf import settings
|
|
|
|
# Global Redis connection (Singleton)
|
|
redis_client = redis.Redis(
|
|
host=settings.REDIS_HOST,
|
|
port=6379,
|
|
db=settings.REDIS_DB
|
|
)
|