advotracker: initial commit

* Cargo.toml
* README.md
* src/main.rs

Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
This commit is contained in:
2019-10-30 23:40:01 +01:00
commit ea55e92219
3 changed files with 73 additions and 0 deletions

12
src/main.rs Normal file
View File

@@ -0,0 +1,12 @@
#[macro_use]
extern crate clap;
use clap::App;
fn main() {
println!("Parsing arguments ...");
// handle commandline arguments with clap (relative path to cli.yml)
let yaml = load_yaml!("cli.yml");
let _matches = App::from_yaml(yaml).get_matches();
println!("Starting program logic ...");
}