fix: flask_restx namespace path wrong (#24456)

This commit is contained in:
quicksand 2025-08-25 14:56:20 +08:00 committed by GitHub
commit 424fdf4b52
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -13,7 +13,7 @@ api = ExternalApi(
doc="/docs", # Enable Swagger UI at /files/docs
)
files_ns = Namespace("files", description="File operations")
files_ns = Namespace("files", description="File operations", path="/")
from . import image_preview, tool_files, upload