mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 18:32:48 +00:00
10 lines
135 B
Python
10 lines
135 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = 'oss'
|
|
|
|
urlpatterns = [
|
|
path('oss/file', views.FileView.as_view()),
|
|
]
|