7 lines
195 B
Python
7 lines
195 B
Python
|
"""root Websocket URLS"""
|
||
|
from django.urls import path
|
||
|
|
||
|
from passbook.outposts.channels import OutpostConsumer
|
||
|
|
||
|
websocket_urlpatterns = [path("ws/outpost/<uuid:pk>/", OutpostConsumer.as_asgi())]
|