pikadick/cli_options.rs
1use camino::Utf8PathBuf;
2
3/// CLI Options
4#[derive(Debug, argh::FromArgs)]
5#[argh(description = "The pikadick discord bot")]
6pub struct CliOptions {
7 #[argh(
8 option,
9 description = "the path to the config",
10 default = "Utf8PathBuf::from(\"./config.toml\")"
11 )]
12 pub config: Utf8PathBuf,
13}