operations_project/apps/notification/routing.py

10 lines
239 B
Python
Raw Normal View History

2025-05-13 11:58:17 +08:00
# 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()),
]