Skip to main content

rec/config/
mod.rs

1//! Configuration loading and management.
2//!
3//! Loads layered TOML config from `~/.config/rec/config.toml` with
4//! environment variable overrides, validation, and in-place editing.
5
6pub mod loader;
7
8pub use loader::*;