mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 10:12:51 +00:00
9 lines
173 B
Python
9 lines
173 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = "tool"
|
|
urlpatterns = [
|
|
path('workspace/<str:workspace_id>/tool/create', views.ToolCreateView.as_view()),
|
|
]
|