2025-04-16 04:50:44 +00:00
|
|
|
from django.urls import path
|
|
|
|
|
|
|
|
|
|
from . import views
|
|
|
|
|
|
|
|
|
|
app_name = "tool"
|
|
|
|
|
urlpatterns = [
|
2025-04-21 02:45:04 +00:00
|
|
|
path('workspace/<str:workspace_id>/tool', views.ToolView.as_view()),
|
2025-04-22 06:24:44 +00:00
|
|
|
path('workspace/<str:workspace_id>/tool/import', views.ToolView.Import.as_view()),
|
2025-04-18 08:04:58 +00:00
|
|
|
path('workspace/<str:workspace_id>/tool/<str:tool_id>', views.ToolView.Operate.as_view()),
|
2025-04-22 06:24:44 +00:00
|
|
|
path('workspace/<str:workspace_id>/tool/<str:tool_id>/debug', views.ToolView.Debug.as_view()),
|
2025-05-14 06:35:13 +00:00
|
|
|
path('workspace/<str:workspace_id>/tool/<str:tool_id>/pylint', views.ToolView.Pylint.as_view()),
|
2025-04-22 06:24:44 +00:00
|
|
|
path('workspace/<str:workspace_id>/tool/<str:tool_id>/export', views.ToolView.Export.as_view()),
|
|
|
|
|
path('workspace/<str:workspace_id>/tool/<int:current_page>/<int:page_size>', views.ToolView.Page.as_view()),
|
2025-04-16 04:50:44 +00:00
|
|
|
]
|