forked from katzen-cafe/iowo
10 lines
185 B
Rust
10 lines
185 B
Rust
|
use clap::Parser;
|
||
|
|
||
|
#[derive(Parser, Debug)]
|
||
|
#[command(author, version, about, long_about = None)]
|
||
|
pub struct Args {
|
||
|
pub text: String,
|
||
|
#[arg(long)]
|
||
|
pub debug_tokens: bool,
|
||
|
}
|