useclap::Parser;/// List Steam games in a directory
#[derive(Parser, Debug)]#[command(author, version, about, long_about = None)]pubstructArgs{/// Directory to list if not the current directory
#[clap(short, long)]pubdir:Option<String>,
/// Forcefully invalidate the appid cache
#[clap(long)]pubinvalidate_cache:bool,
}