mirror of
https://github.com/barkeser2002/offline-db.git
synced 2026-09-25 10:06:05 +03:00
7 lines
185 B
Python
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()),
|
|
]
|