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

8 lines
162 B
Python

from django.urls import path
from .consumers import NotifyConsumer
websocket_urlpatterns = [
path('notify/<str:event_slug>/', NotifyConsumer.as_asgi()),
]