mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-27 12:12:57 +00:00
10 lines
262 B
Python
10 lines
262 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "tool"
|
|
urlpatterns = [
|
|
path('workspace/<str:workspace_id>/tool', views.ToolView.Create.as_view()),
|
|
path('workspace/<str:workspace_id>/tool/<str:tool_id>', views.ToolView.Operate.as_view()),
|
|
]
|