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