c3lf-system-3/core/notify_sessions/routing.py

8 lines
149 B
Python
Raw Normal View History

from django.urls import path
from .consumers import NotifyConsumer
websocket_urlpatterns = [
2023-11-23 22:17:20 +00:00
path('ws/2/notify/', NotifyConsumer.as_asgi()),
]