diff --git a/src/bin/git-solo.rs b/src/bin/git-solo.rs index 656d483..e4c8d9a 100644 --- a/src/bin/git-solo.rs +++ b/src/bin/git-solo.rs @@ -2,8 +2,15 @@ use git_mob::{ ensure_commit_template_is_set, get_main_author, with_gitmessage_template_path_or_exit, }; use std::fs::File; +use structopt::StructOpt; + +#[derive(StructOpt)] +#[structopt(name="git-solo")] +/// Disband the mob and continue working solo +struct Opt {} fn main() { + let _opt = Opt::from_args(); let main_author = get_main_author(); println!("{}", main_author);