marg 0.3.3

Meta config for apps from args
Documentation
1
2
3
4
5
6
7
8
use marg::ArgConfig;

fn main() -> Result<(), String> {
    let cfg = ArgConfig::from_args()?;
    debug_assert!(cfg.secret.is_some());

    Ok(())
}