mirror of
https://github.com/YGGverse/hlstate-rs.git
synced 2026-03-31 09:05:42 +00:00
12 lines
251 B
Rust
12 lines
251 B
Rust
use clap::Parser;
|
|
use std::path::PathBuf;
|
|
|
|
#[derive(Parser, Debug)]
|
|
#[command(version, about, long_about = None)]
|
|
pub struct Argument {
|
|
/// Path to config file
|
|
///
|
|
/// * see `config.toml`
|
|
#[arg(short, long)]
|
|
pub config: PathBuf,
|
|
}
|