diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-11-17 18:46:22 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-11-17 18:46:22 +0100 |
commit | 36f4050a40c3ba7b9637a973063b6b5549a2c208 (patch) | |
tree | 21299ba431139f7a12a47a8df935dffeb9f30e82 /src/config.rs | |
parent | 16b38f3197167c344bb522dcfa83292ddb3c1026 (diff) | |
download | aerogramme-36f4050a40c3ba7b9637a973063b6b5549a2c208.tar.gz aerogramme-36f4050a40c3ba7b9637a973063b6b5549a2c208.zip |
WIP provider config
Diffstat (limited to 'src/config.rs')
-rw-r--r-- | src/config.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.rs b/src/config.rs index 2a55036..477968e 100644 --- a/src/config.rs +++ b/src/config.rs @@ -46,6 +46,8 @@ pub struct LoginStaticUser { pub master_key: Option<String>, pub secret_key: Option<String>, + + pub storage: StaticStorage, } #[derive(Serialize, Deserialize, Debug, Clone)] |