18 lines
319 B
Rust
18 lines
319 B
Rust
//! Cli manager
|
|
|
|
// Imports
|
|
use std::path::PathBuf;
|
|
|
|
/// Data from the command line
|
|
#[derive(PartialEq, Eq, Clone, Debug)]
|
|
#[derive(clap::Parser)]
|
|
#[clap(author, version, about)]
|
|
pub struct Args {
|
|
/// Input file
|
|
pub input: PathBuf,
|
|
|
|
/// The output file
|
|
#[clap(long = "output", short = 'o')]
|
|
pub output: PathBuf,
|
|
}
|