diff options
| author | Leonardo Bishop <me@leonardobishop.com> | 2023-07-20 22:04:45 +0100 |
|---|---|---|
| committer | Leonardo Bishop <me@leonardobishop.com> | 2023-07-20 22:15:25 +0100 |
| commit | c3a55debe9e4194f83164d412293f27b797627af (patch) | |
| tree | 027ca943a051bf51c809eec0f590d598df2db9a3 /src/cli.rs | |
Initial commit
Diffstat (limited to 'src/cli.rs')
| -rw-r--r-- | src/cli.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/cli.rs b/src/cli.rs new file mode 100644 index 0000000..dc53357 --- /dev/null +++ b/src/cli.rs @@ -0,0 +1,8 @@ +use clap::Parser; + +#[derive(Parser, Debug)] +#[command(author, version, about, long_about = None)] +pub struct Args { + #[arg(short, long)] + pub file: String, +}
\ No newline at end of file |
