archive
/
md-pdf-rs
Archived
1
Fork 0

Restore args code, mostly

This commit is contained in:
Jake Howard 2017-07-17 10:02:58 +01:00
parent 02f1e0efd7
commit 46c40e8650
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 4 additions and 1 deletions

View File

@ -11,5 +11,8 @@ mod config;
mod tests;
fn main() {
config::get_config();
let args = args::get_matches();
if args.subcommand_name().unwrap() == "build" {
config::get_config();
}
}