operations_project/apps/chat/routing.py
2025-05-08 17:25:32 +08:00

9 lines
264 B
Python

# apps/chat/routing.py
from django.urls import re_path
from apps.chat.consumers import ChatConsumer, ChatStreamConsumer
websocket_urlpatterns = [
re_path(r'ws/chat/$', ChatConsumer.as_asgi()),
re_path(r'ws/chat/stream/$', ChatStreamConsumer.as_asgi()),
]