Config is now setup mostly :3

This commit is contained in:
2026-07-01 18:18:37 +03:00
parent 23b05296ba
commit cb142bff0e
8 changed files with 139 additions and 2 deletions

10
src/config/cli.rs Normal file
View File

@@ -0,0 +1,10 @@
#[derive(Debug, Clone, Default, clap::Parser)]
pub struct CliArgs {
/// Configuration file path
#[arg(long = "config", short = 'C', default_value = "./config.toml")]
pub config_file: camino::Utf8PathBuf,
/// Output more information in logs
#[arg(long = "verbose", short = 'v')]
pub verbose: bool,
}