use clap::{CommandFactory, Parser, Subcommand};
#[derive(Parser)]
struct Cli {
#[command(subcommand)]
command: Commands,
}
#[derive(Subcommand)]
enum Commands {
List,
Add,
Update,
Delete,
}
fn main() {
clap_sort::assert_sorted(&Cli::command());
println!("This line will never be reached");
}