initial commit - laid out stuff

This commit is contained in:
askiiart 2025-05-13 23:31:29 -05:00
commit 0d0cb945a1
Signed by untrusted user who does not match committer: askiiart
GPG key ID: 6A32977DAF31746A
6 changed files with 463 additions and 0 deletions

10
src/cli.rs Normal file
View 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,
}