doum_cli/system/
mod.rs

1// 전체 시스템 관련 기능을 포함하는 모듈
2
3pub mod config;
4pub mod env;
5pub mod logging;
6pub mod paths;
7pub mod secret;
8
9pub use config::{
10    Config, ContextConfig, LLMConfig, LoggingConfig, load_config, load_default_config, save_config,
11};
12pub use env::{OsType, ShellType, SystemInfo, detect_os, detect_shell, get_system_info};
13pub use logging::init_logging;
14pub use paths::{get_app_dir, get_config_path, get_log_dir};
15pub use secret::{ProviderSecret, SecretManager};