Dynavera/apps/agents/routing.py

8 lines
164 B
Python
Raw Normal View History

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