Files
2026-01-23 23:38:57 +03:00

7 lines
185 B
Python

from django.urls import re_path
from . import consumers
websocket_urlpatterns = [
re_path(r'ws/watch-party/(?P<room_name>[0-9a-f-]+)/$', consumers.WatchPartyConsumer.as_asgi()),
]