1 2 3 4 5 6 7 8 9 10 11 12
use std::path::Path; use anyhow::Result; use neoray::config::Config; fn main() -> Result<()> { let config = Config::read(Path::new("config.yaml"))?; println!("{config:#?}"); Ok(()) }