use clap::Parser;
#[derive(Parser)]
#[clap(author, version)]
#[clap(propagate_version = true)]
pub struct Args {
#[clap(subcommand)]
pub command: Commands,
}
#[allow(missing_docs)]
#[derive(Subcommand)]
pub enum Commands {
Search {
title: String,
},
EpCount {
ident: String,
},
Detail {
ident: String,
},
Watch {
ident: String,
ep: usize,
},
}