little-hesinde/rusty-library/src/cli.rs

11 lines
220 B
Rust
Raw Normal View History

2024-05-02 16:10:29 +00:00
use clap::Parser;
/// Simple odps server for calibre
#[derive(Parser)]
#[command(version, about, long_about = None)]
pub struct Cli {
/// Calibre library path
#[arg(last = true)]
pub library_path: String,
}