Files

33 lines
733 B
Python
Raw Permalink Normal View History

2026-03-14 15:44:48 +08:00
"""Configuration module for nanobot."""
from nanobot.config.loader import get_config_path, load_config
from nanobot.config.paths import (
get_bridge_install_dir,
get_cli_history_path,
get_cron_dir,
get_data_dir,
get_legacy_sessions_dir,
2026-03-28 01:01:13 +08:00
is_default_workspace,
2026-03-14 15:44:48 +08:00
get_logs_dir,
get_media_dir,
get_runtime_subdir,
get_workspace_path,
)
from nanobot.config.schema import Config
__all__ = [
"Config",
"load_config",
"get_config_path",
"get_data_dir",
"get_runtime_subdir",
"get_media_dir",
"get_cron_dir",
"get_logs_dir",
"get_workspace_path",
2026-03-28 01:01:13 +08:00
"is_default_workspace",
2026-03-14 15:44:48 +08:00
"get_cli_history_path",
"get_bridge_install_dir",
"get_legacy_sessions_dir",
]