[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,13 @@ api = ExternalApi(
mcp_ns = Namespace("mcp", description="MCP operations", path="/")
from . import mcp # pyright: ignore[reportUnusedImport]
from . import mcp
api.add_namespace(mcp_ns)
__all__ = [
"api",
"bp",
"mcp",
"mcp_ns",
]