//! Contains the new command definition
useclap::{Command, Arg};/// Defines the 'new' subcommand structure
pubfnsubcommand()-> Command{Command::new("new").about("Create a new project").arg(Arg::new("name").help("The name of the new project").required(true).index(1))}