6 lines
177 B
Python
6 lines
177 B
Python
from django.urls import re_path, path
|
|
from . import consumers
|
|
|
|
websocket_urlpatterns = [
|
|
re_path(r"ws/channel/(?P<channel_id>[\w-]+)/$", consumers.ChatConsumer.as_asgi()),
|
|
] |