initial commit - laid out stuff
This commit is contained in:
commit
0d0cb945a1
6 changed files with 463 additions and 0 deletions
10
src/cli.rs
Normal file
10
src/cli.rs
Normal file
|
@ -0,0 +1,10 @@
|
|||
use std::path::PathBuf;
|
||||
|
||||
use clap::Parser;
|
||||
|
||||
#[derive(Parser)]
|
||||
#[command(version, about, long_about = None)]
|
||||
pub(crate) struct Cli {
|
||||
#[arg(short, long, value_name = "FILE", default_value = "shoe.conf")]
|
||||
pub(crate) config: PathBuf,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue