use clap::Args as ClapArgs;
#[derive(Debug, ClapArgs)]
#[command(about, long_about = None)]
pub struct Args {
#[arg(short, long)]
pub name: Option<String>,
}
pub async fn run(args: Args) -> anyhow::Result<()> {
println!("Listing apps with filter: {:?}", args.name);
todo!("app list not yet implemented")
}