8 lines
229 B
Python
8 lines
229 B
Python
from django.urls import re_path
|
|
from . import consumers
|
|
|
|
websocket_urlpatterns = [
|
|
re_path(r'ws/chat/(?P<chat_id>\d+)$', consumers.ChatConsumer.as_asgi()),
|
|
re_path(r'ws/chat/notice$', consumers.ChatNoticeConsumer.as_asgi()),
|
|
]
|