8 lines
152 B
Python
8 lines
152 B
Python
# routing.py
|
|
|
|
from django.urls import path
|
|
from . import consumers
|
|
|
|
websocket_urlpatterns = [
|
|
path("ws/echo/", consumers.EchoConsumer.as_asgi()),
|
|
]
|