7 lines
145 B
Python
7 lines
145 B
Python
from django.urls import path
|
|
|
|
from c3nav.mesh.consumers import MeshConsumer
|
|
|
|
websocket_urlpatterns = [
|
|
path('ws', MeshConsumer.as_asgi()),
|
|
]
|