6 lines
172 B
Python
6 lines
172 B
Python
from django.urls import re_path
|
|
from core import consumers
|
|
|
|
websocket_urlpatterns = [
|
|
re_path(r'ws/chat/(?P<room_id>[0-9a-f-]+)/$', consumers.ChatConsumer.as_asgi()),
|
|
] |