live mesh log

This commit is contained in:
Laura Klünder 2023-10-05 01:36:24 +02:00
parent 18c33a823e
commit 304d35c057
7 changed files with 143 additions and 11 deletions

View file

@ -1,7 +1,8 @@
from django.urls import path
from c3nav.mesh.consumers import MeshConsumer
from c3nav.mesh.consumers import MeshConsumer, MeshUIConsumer
websocket_urlpatterns = [
path('ws', MeshConsumer.as_asgi()),
path('ui/ws', MeshUIConsumer.as_asgi()),
]