Dynavera/apps/mlstore/routing.py
2026-01-20 17:21:28 +00:00

6 lines
166 B
Python

from django.urls import path
from . import consumers
websocket_urlpatterns = [
path("ws/mlstore/agents/<str:agent_id>/", consumers.MLStoreConsumer.as_asgi()),
]