use clap::{Parser, Subcommand};
use std::path::PathBuf;
#[derive(Debug, Parser)]
#[command(name = "verso", version, about = "Terminal EPUB reader")]
pub struct Cli {
#[command(subcommand)]
pub command: Option<Command>,
}
#[derive(Debug, Subcommand)]
pub enum Command {
Scan,
Export { target: String },
PurgeOrphans,
Config,
Open { path: PathBuf },
}