aboutsummaryrefslogtreecommitdiff
path: root/src/storage
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2023-11-23 17:19:35 +0100
committerQuentin Dufour <quentin@deuxfleurs.fr>2023-11-23 17:19:35 +0100
commit0722886efbeef3713bd7a671d2c09c8af2bdb6bd (patch)
tree89683e814debbd9689517009f0e946bd7b7a7d3f /src/storage
parent8cd9801030e24c58621b3bed8723e8a8a4722ef8 (diff)
downloadaerogramme-0722886efbeef3713bd7a671d2c09c8af2bdb6bd.tar.gz
aerogramme-0722886efbeef3713bd7a671d2c09c8af2bdb6bd.zip
it compiles!
Diffstat (limited to 'src/storage')
-rw-r--r--src/storage/garage.rs9
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 {}