mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 10:12:51 +00:00
11 lines
197 B
Python
11 lines
197 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = 'oss'
|
|
|
|
urlpatterns = [
|
|
path('file', views.FileView.as_view()),
|
|
path('file/<str:file_id>', views.FileView.Operate.as_view()),
|
|
]
|