diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-12-21 21:54:36 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-12-21 21:54:36 +0100 |
commit | 012c6ad6724b6a6e155ee717e6d558e1fe199e43 (patch) | |
tree | 986377de04024911c1c460e41828dde546d5a6a6 /src/storage/in_memory.rs | |
parent | 4b8b48b48572115b943efdf6356a191871d46a55 (diff) | |
download | aerogramme-012c6ad6724b6a6e155ee717e6d558e1fe199e43.tar.gz aerogramme-012c6ad6724b6a6e155ee717e6d558e1fe199e43.zip |
initialize aws sdk with our info
Diffstat (limited to 'src/storage/in_memory.rs')
-rw-r--r-- | src/storage/in_memory.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/storage/in_memory.rs b/src/storage/in_memory.rs index fb6e599..723bca0 100644 --- a/src/storage/in_memory.rs +++ b/src/storage/in_memory.rs @@ -106,8 +106,9 @@ impl MemBuilder { } } +#[async_trait] impl IBuilder for MemBuilder { - fn build(&self) -> Result<Store, StorageError> { + async fn build(&self) -> Result<Store, StorageError> { Ok(Box::new(MemStore { row: self.row.clone(), blob: self.blob.clone(), |