operations_project/apps/notification/routing.py
2025-05-13 11:58:17 +08:00

10 lines
239 B
Python

# apps/notification/routing.py
from django.urls import re_path
from apps.notification.consumers import NotificationConsumer
import logging
websocket_urlpatterns = [
re_path(r'^ws/notifications/$', NotificationConsumer.as_asgi()),
]