operations_project/apps/chat/routing.py
2025-05-13 11:58:17 +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()),
]