Files
notification/auth/config/conf/channels.py
2025-04-19 15:18:13 +05:00

8 lines
175 B
Python

CHANNEL_LAYERS = {
"default": {
"BACKEND": "channels_redis.core.RedisChannelLayer",
"CONFIG": {
"hosts": [("redis", 6379)],
},
},
}