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

8 lines
148 B
Python

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