old_console/console/routing.py
2024-11-02 14:12:45 +03:00

7 lines
169 B
Python

from django.urls import path
from notifications.services.ws import WSNotification
websocket_urlpatterns = [
path('ws/notifications/', WSNotification.as_asgi()),
]