8 lines
248 B
Python
8 lines
248 B
Python
from django.urls import re_path
|
|
from . import consumers
|
|
|
|
websocket_urlpatterns = [
|
|
re_path(r'^ws/device/$', consumers.DeviceConsumer.as_asgi()),
|
|
re_path(r'^ws/device/token/(?P<token>[^/]+)/?$', consumers.DeviceConsumer.as_asgi()),
|
|
]
|