gamels 1.0.0

List current directory, converting file names to steam game titles
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use clap::Parser;

/// List Steam games in a directory
#[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)]
pub struct Args {
    /// Directory to list if not the current directory
    #[clap(short, long)]
    pub dir: Option<String>,

    /// Forcefully invalidate the appid cache
    #[clap(long)]
    pub invalidate_cache: bool,
}