from django.urls import path from apps.agents import consumers websocket_urlpatterns = [ path('ws/agents//', consumers.AgentConsumer.as_asgi()), ]