2026-01-30 10:21:29 +08:00
|
|
|
"""
|
|
|
|
|
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.
|
|
|
|
|
"""
|
|
|
|
|
|
2026-04-30 18:37:46 +08:00
|
|
|
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",
|
|
|
|
|
]
|