team-3/src/c3nav/mesh/urls.py

8 lines
145 B
Python
Raw Normal View History

from django.urls import path
from c3nav.mesh.consumers import EchoConsumer
websocket_urlpatterns = [
path('ws', EchoConsumer.as_asgi()),
]