Files
ChouJuGEO/modules/ui/__init__.py
T
2026-04-30 18:37:46 +08:00

33 lines
646 B
Python

"""
UI-level modules for GEO Streamlit app.
Each top-level Tab in `geo_tool.py` should have a corresponding
`tab_*.py` module here, exposing a `render_*` function that is
invoked from the main app.
"""
from . import (
tab_keywords,
tab_autowrite,
tab_optimize,
tab_validation,
tab_history,
tab_reports,
tab_workflow,
tab_resources,
tab_platform_sync,
tab_config_optimizer,
)
__all__ = [
"tab_keywords",
"tab_autowrite",
"tab_optimize",
"tab_validation",
"tab_history",
"tab_reports",
"tab_workflow",
"tab_resources",
"tab_platform_sync",
"tab_config_optimizer",
]