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