2022-04-04 01:13:48 +02:00
|
|
|
from django.urls import path
|
|
|
|
|
2023-10-05 01:36:24 +02:00
|
|
|
from c3nav.mesh.consumers import MeshConsumer, MeshUIConsumer
|
2022-04-04 01:13:48 +02:00
|
|
|
|
|
|
|
websocket_urlpatterns = [
|
2022-04-04 14:48:43 +02:00
|
|
|
path('ws', MeshConsumer.as_asgi()),
|
2023-10-05 01:36:24 +02:00
|
|
|
path('ui/ws', MeshUIConsumer.as_asgi()),
|
2022-04-04 01:13:48 +02:00
|
|
|
]
|