feat(cli): block out cli
blocked out the args and commands that will be implemented later
This commit is contained in:
+6
-1
@@ -1,3 +1,8 @@
|
||||
use clap::Parser;
|
||||
|
||||
mod cli;
|
||||
|
||||
fn main() {
|
||||
println!("Hello, git!");
|
||||
let args = cli::Cli::parse();
|
||||
println!("{:?}", args);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user