refactor: uppercase Config file

This commit is contained in:
Max Bossing 2025-08-08 08:40:47 +02:00
parent 5ea60282f3
commit 32ae9786e1
Signed by: max
GPG key ID: E2E95E80A0C1217E
2 changed files with 1 additions and 1 deletions

View file

@ -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,
}