1//! Configuration loading and profile management.
2//!
3//! Reads `config.toml` from the XDG config directory and supports
4//! environment variable overrides for sensitive values like API tokens.
56mod paths;
7mod profile;
89pub use paths::*;
10pub use profile::*;