diff --git a/config.example.toml b/Config.example.toml similarity index 100% rename from config.example.toml rename to Config.example.toml diff --git a/src/cli.rs b/src/cli.rs index a8faab3..5360913 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -3,6 +3,6 @@ use std::path::PathBuf; #[derive(Debug, Parser)] pub struct Cli { - #[arg(short, long, default_value = "/app/config.toml")] + #[arg(short, long, default_value = "/app/Config.toml")] pub config: PathBuf, }