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

9 lines
162 B
Python
Raw Normal View History

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