diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-11-23 17:19:35 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-11-23 17:19:35 +0100 |
commit | 0722886efbeef3713bd7a671d2c09c8af2bdb6bd (patch) | |
tree | 89683e814debbd9689517009f0e946bd7b7a7d3f /src/storage/garage.rs | |
parent | 8cd9801030e24c58621b3bed8723e8a8a4722ef8 (diff) | |
download | aerogramme-0722886efbeef3713bd7a671d2c09c8af2bdb6bd.tar.gz aerogramme-0722886efbeef3713bd7a671d2c09c8af2bdb6bd.zip |
it compiles!
Diffstat (limited to 'src/storage/garage.rs')
-rw-r--r-- | src/storage/garage.rs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/storage/garage.rs b/src/storage/garage.rs index d9c768f..052e812 100644 --- a/src/storage/garage.rs +++ b/src/storage/garage.rs @@ -1,7 +1,14 @@ use crate::storage::*; #[derive(Clone, Debug, Hash)] -pub struct GrgCreds {} +pub struct GrgCreds { + pub region: String, + pub s3_endpoint: String, + pub k2v_endpoint: String, + pub aws_access_key_id: String, + pub aws_secret_access_key: String, + pub bucket: String, +} pub struct GrgStore {} pub struct GrgRef {} pub struct GrgValue {} |