MaxKB/apps/oss/urls.py
wxg0103 9d4b2bf010
Some checks are pending
sync2gitee / repo-sync (push) Waiting to run
Typos Check / Spell Check with Typos (push) Waiting to run
feat: enhance image and video handling by supporting URLs and file IDs
2025-11-18 18:27:11 +08:00

11 lines
188 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', views.GetUrlView.as_view()),
]