diff options
author | Alex Auvolat <alex@adnab.me> | 2022-05-19 15:14:36 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-05-19 15:14:36 +0200 |
commit | 1dcb11643c783096e1b52bf48d6b76121504e6bd (patch) | |
tree | 658f1db34d0e4f91331dabcab85a5898a95d4ad4 /src/config.rs | |
parent | 6be90936a108d971e0cfa3ddaa9c2d54557e30f3 (diff) | |
download | aerogramme-1dcb11643c783096e1b52bf48d6b76121504e6bd.tar.gz aerogramme-1dcb11643c783096e1b52bf48d6b76121504e6bd.zip |
CLI skeleton
Diffstat (limited to 'src/config.rs')
-rw-r--r-- | src/config.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/config.rs b/src/config.rs index d756d6e..8abbce6 100644 --- a/src/config.rs +++ b/src/config.rs @@ -8,9 +8,8 @@ use serde::Deserialize; #[derive(Deserialize, Debug, Clone)] pub struct Config { pub s3_endpoint: String, - pub s3_region: String, pub k2v_endpoint: String, - pub k2v_region: String, + pub aws_region: String, pub login_static: Option<LoginStaticConfig>, pub login_ldap: Option<LoginLdapConfig>, |