from django.urls import path from .consumers import NotifyConsumer websocket_urlpatterns = [ path('notify//', NotifyConsumer.as_asgi()), ]