From c789056ccf2b1ebaab892324b27852538f36b1ca Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Fri, 18 Oct 2024 20:05:40 +0200 Subject: [PATCH] Improve env var name --- central_backend/src/app_config.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/central_backend/src/app_config.rs b/central_backend/src/app_config.rs index 242f02e..faecf0b 100644 --- a/central_backend/src/app_config.rs +++ b/central_backend/src/app_config.rs @@ -38,8 +38,8 @@ pub enum ConsumptionBackend { /// Fronius inverter consumption Fronius { - /// The origin of the domain where the webserver of the Fronius Symo can be reacher - #[clap(short, long)] + /// The origin of the domain where the webserver of the Fronius Symo can be reached + #[clap(short, long, env = "FRONIUS_ORIG")] origin: String, }, }