8 lines
256 B
Python
8 lines
256 B
Python
from django.urls import re_path
|
|
from chat import consumers
|
|
|
|
websocket_urlpatterns = [
|
|
re_path(r'ws/channel/(?P<channel_id>\d+)/$', consumers.ChannelConsumer.as_asgi()),
|
|
re_path(r'ws/dm/(?P<username>[\w.@+-]+)/$', consumers.DMConsumer.as_asgi()),
|
|
]
|