daren/apps/chat/routing.py
2025-05-23 19:25:35 +08:00

8 lines
199 B
Python

# 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()),
]