1 2 3 4 5 6 7 8 9
use clap::Parser; /// Creates a new group using the login credentials provided or prompted for #[derive(Parser)] pub struct CreateGroup { /// Name of the group to be created #[clap(index = 1)] pub group: String, }