[Chore/Refactor] use __all__ to specify export member. (#25681)

This commit is contained in:
Ritoban Dutta
2025-09-15 07:15:35 +05:30
committed by GitHub
parent a3f2c05632
commit 67a686cf98
6 changed files with 192 additions and 80 deletions

View File

@@ -14,6 +14,15 @@ api = ExternalApi(
files_ns = Namespace("files", description="File operations", path="/")
from . import image_preview, tool_files, upload # pyright: ignore[reportUnusedImport]
from . import image_preview, tool_files, upload
api.add_namespace(files_ns)
__all__ = [
"api",
"bp",
"files_ns",
"image_preview",
"tool_files",
"upload",
]