doum_cli/system/
mod.rs

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