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