From a691a5a1450f7e55a08836f80f93f49759962e45 Mon Sep 17 00:00:00 2001 From: Bulat Kurbanov Date: Sun, 23 Jul 2023 22:10:01 +0200 Subject: [PATCH] Fix --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 5ef8aed..9551375 100644 --- a/src/config.rs +++ b/src/config.rs @@ -23,7 +23,7 @@ impl Config { Config { api_key: get_env("API_KEY"), - postgres_user: get_env("POSGRES_USER"), + postgres_user: get_env("POSTGRES_USER"), postgres_password: get_env("POSTGRES_PASSWORD"), postgres_host: get_env("POSTGRES_HOST"), postgres_port: get_env("POSTGRES_PORT").parse().unwrap(),