c3lf-system-3/core/notify_sessions/routing.py
2023-11-24 03:53:05 +01:00

7 lines
149 B
Python

from django.urls import path
from .consumers import NotifyConsumer
websocket_urlpatterns = [
path('ws/2/notify/', NotifyConsumer.as_asgi()),
]