10 lines
239 B
Python
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()),
|
|
]
|
|
|