Skip to main content

mkt_core/config/
mod.rs

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.
5
6mod paths;
7mod profile;
8
9pub use paths::*;
10pub use profile::*;