11 lines
220 B
Rust
11 lines
220 B
Rust
|
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,
|
||
|
}
|