10 lines
181 B
Python
10 lines
181 B
Python
#
|
|
# routing.py
|
|
from django.urls import re_path
|
|
from . import consumers
|
|
|
|
|
|
websocket_urlpatterns = [
|
|
re_path(r"ws/relay/(?P<uuid>[^/]+)/?$", consumers.RelayConsumer.as_asgi()),
|
|
|
|
] |