From 32ae9786e1b3e30395fe524c1ceb0c365f10d535 Mon Sep 17 00:00:00 2001 From: Max Bossing Date: Fri, 8 Aug 2025 08:40:47 +0200 Subject: [PATCH] refactor: uppercase Config file --- config.example.toml => Config.example.toml | 0 src/cli.rs | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename config.example.toml => Config.example.toml (100%) 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, }