1 2 3 4 5 6 7
pub mod parser; pub use parser::UnboundConfig; pub fn load(path: &str) -> anyhow::Result<UnboundConfig> { parser::parse_file(path) }