Dynavera/apps/mlstore/routing.py

7 lines
166 B
Python
Raw Normal View History

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