mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
11 lines
209 B
Python
11 lines
209 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = 'oss'
|
|
|
|
urlpatterns = [
|
|
path('oss/file', views.FileView.as_view()),
|
|
path('oss/get_url/<str:application_id>', views.GetUrlView.as_view()),
|
|
]
|