diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-04-23 10:35:43 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-04-23 10:35:43 +0200 |
commit | 4594e068dbba3d3d704728449fc6ccaaadaa82f1 (patch) | |
tree | 6a098fba87dcbcb9b7754609deaac159abb82b92 /aero-user/src/storage/mod.rs | |
parent | 936f851fdb120dd0b46c4effeabe0dbb508d4d3d (diff) | |
download | aerogramme-4594e068dbba3d3d704728449fc6ccaaadaa82f1.tar.gz aerogramme-4594e068dbba3d3d704728449fc6ccaaadaa82f1.zip |
PUT seems to work
Diffstat (limited to 'aero-user/src/storage/mod.rs')
-rw-r--r-- | aero-user/src/storage/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aero-user/src/storage/mod.rs b/aero-user/src/storage/mod.rs index f5eb8d3..527765f 100644 --- a/aero-user/src/storage/mod.rs +++ b/aero-user/src/storage/mod.rs @@ -159,7 +159,7 @@ pub trait IStore { async fn row_poll(&self, value: &RowRef) -> Result<RowVal, StorageError>; async fn blob_fetch(&self, blob_ref: &BlobRef) -> Result<BlobVal, StorageError>; - async fn blob_insert(&self, blob_val: BlobVal) -> Result<(), StorageError>; + async fn blob_insert(&self, blob_val: BlobVal) -> Result<String, StorageError>; async fn blob_copy(&self, src: &BlobRef, dst: &BlobRef) -> Result<(), StorageError>; async fn blob_list(&self, prefix: &str) -> Result<Vec<BlobRef>, StorageError>; async fn blob_rm(&self, blob_ref: &BlobRef) -> Result<(), StorageError>; |