6 lines
166 B
Python
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()),
|
|
]
|