8 lines
199 B
Python
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()),
|
|
]
|