mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-29 16:12:55 +00:00
10 lines
218 B
Python
10 lines
218 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = 'application'
|
|
|
|
urlpatterns = [
|
|
path('workspace/<str:workspace_id>/application/<str:application_id>/application_key', views.ApplicationKey.as_view()),
|
|
]
|