diff options
author | Alex Auvolat <lx@deuxfleurs.fr> | 2025-02-16 16:44:34 +0100 |
---|---|---|
committer | Alex Auvolat <lx@deuxfleurs.fr> | 2025-02-16 17:25:55 +0100 |
commit | cee7560fc1c3e885dc80dfee233211f54ac9db7d (patch) | |
tree | ee80161116770dcd18305aa23222b9ca2c02ce7c /src/api/s3/copy.rs | |
parent | 2f0c5ca220d73b6c621f21816b666f939839dd49 (diff) | |
download | garage-cee7560fc1c3e885dc80dfee233211f54ac9db7d.tar.gz garage-cee7560fc1c3e885dc80dfee233211f54ac9db7d.zip |
api: refactor: move checksum algorithms to common
Diffstat (limited to 'src/api/s3/copy.rs')
-rw-r--r-- | src/api/s3/copy.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/api/s3/copy.rs b/src/api/s3/copy.rs index 07d50ea5..4bf68406 100644 --- a/src/api/s3/copy.rs +++ b/src/api/s3/copy.rs @@ -21,6 +21,7 @@ use garage_model::s3::object_table::*; use garage_model::s3::version_table::*; use garage_api_common::helpers::*; +use garage_api_common::signature::checksum::*; use crate::api_server::{ReqBody, ResBody}; use crate::checksum::*; |