8 lines
161 B
Python
8 lines
161 B
Python
|
from django.urls import path, re_path
|
||
|
|
||
|
from . import consumers
|
||
|
|
||
|
websocket_urlpatterns = [
|
||
|
path('ws/room/<str:room_id>', consumers.RoomConsumer.as_asgi()),
|
||
|
]
|