//! Configuration structs and logic. use std::{fs::read_to_string, path::Path}; use { color_eyre::Result, serde::{Deserialize, Serialize}, }; mod general; pub use general::*; /// The main Hooked configuration struct. #[derive(Debug, Default, Deserialize, Serialize)] #[serde(default, deny_unknown_fields)] pub struct Config { /// General Hooked configuration. pub general: General, } impl Config { /// Read a file and parse it with [`toml`]. pub fn from_toml_file

(file: P) -> Result where P: AsRef, { toml::from_str(&read_to_string(file)?).map_err(Into::into) } }