init: This is the initial commit.
This commit marks the start of the project. This adds a simple command line interface which can be found in `src/cli.rs`.
This commit is contained in:
9
src/main.rs
Normal file
9
src/main.rs
Normal file
@@ -0,0 +1,9 @@
|
||||
use crate::cli::parse_args;
|
||||
|
||||
mod cli;
|
||||
|
||||
fn main() {
|
||||
let opts = parse_args();
|
||||
|
||||
println!("{opts:#?}");
|
||||
}
|
||||
Reference in New Issue
Block a user