feat: Added impl_path field to Config struct

- Also clarified error::Error enum
This commit is contained in:
Alexey 2025-12-09 14:16:23 +03:00
commit 1142fe6ad9
2 changed files with 10 additions and 5 deletions

View file

@ -24,6 +24,9 @@ pub struct Config {
/// If true, print to std{out/err}
pub verbose: bool,
/// Path to implementation config file
pub impl_path: Option<PathBuf>,
}
impl Default for Config {
@ -34,6 +37,7 @@ impl Default for Config {
accounts_path: "accounts".into(),
map: "map.toml".into(),
verbose: true,
impl_path: None,
}
}
}