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