let command = Command::new("hey")
.version("1.0")
.author("Hariprasath")
.about("Cli Used for generating using gemini")
.subcommand(
Command::new("tell")
.about("Used to ask gemini")
.arg(Arg::new("prompt").required(true)),
)
.get_matches();
1 post - 1 participant