daren/apps/chat/routing.py

8 lines
199 B
Python
Raw Normal View History

2025-05-23 19:25:35 +08:00
# apps/chat/routing.py
from django.urls import re_path
from apps.chat.consumers import ChatStreamConsumer
websocket_urlpatterns = [
re_path(r'ws/chat/stream/$', ChatStreamConsumer.as_asgi()),
]