diff --git a/WatcherAgent/src/config.rs b/WatcherAgent/src/config.rs index f3fe41d..f549218 100644 --- a/WatcherAgent/src/config.rs +++ b/WatcherAgent/src/config.rs @@ -5,7 +5,7 @@ impl WatcherConfig { // Load .env file (works in both Docker and local development) dotenvy::dotenv().ok(); - let mut cfg = config::Config::builder() + let cfg = config::Config::builder() .add_source(config::Environment::with_prefix("WATCHER").separator("_")) .build()?;