37 lines
739 B
Rust
37 lines
739 B
Rust
extern crate clap;
|
|
use clap::{App, ArgMatches};
|
|
|
|
pub struct ModuleConfig {
|
|
pub load : bool,
|
|
}
|
|
|
|
impl ModuleConfig {
|
|
pub fn new() -> ModuleConfig {
|
|
ModuleConfig {
|
|
load: false,
|
|
}
|
|
}
|
|
}
|
|
|
|
pub struct Config<'a> {
|
|
pub module_configs : Vec<ModuleConfig>,
|
|
pub cli_matches : ArgMatches<'a, 'a>,
|
|
}
|
|
|
|
impl<'a> Config<'a> {
|
|
pub fn new(app : clap::App<'a, 'a, 'a, 'a, 'a, 'a>) -> Config<'a> {
|
|
Config {
|
|
module_configs: vec![],
|
|
cli_matches: app.get_matches(),
|
|
}
|
|
}
|
|
|
|
pub fn is_verbose(&self) -> bool {
|
|
self.cli_matches.is_present("verbose")
|
|
}
|
|
|
|
pub fn is_debugging(&self) -> bool {
|
|
self.cli_matches.is_present("debugging")
|
|
}
|
|
}
|
|
|