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