Initial commit
To implement commands `clap` is used to parse arguments.
This commit is contained in:
commit
2b96bcc562
5 changed files with 289 additions and 0 deletions
9
src/main.rs
Normal file
9
src/main.rs
Normal file
|
@ -0,0 +1,9 @@
|
|||
use clap::Clap;
|
||||
|
||||
mod cli;
|
||||
|
||||
use cli::Opts;
|
||||
|
||||
fn main() {
|
||||
Opts::parse();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue