diff options
author | Alex Auvolat <lx@deuxfleurs.fr> | 2025-02-05 21:00:19 +0100 |
---|---|---|
committer | Alex Auvolat <lx@deuxfleurs.fr> | 2025-02-05 21:00:19 +0100 |
commit | 61f3de649646d098812e6ddb814e20ce7e66ad94 (patch) | |
tree | 599160faf816af40b9efcddf14d797fc5ebbcb09 /src/api/s3/api_server.rs | |
parent | 71655c1e89b87fa009d1c5a56448b2fe7df05c49 (diff) | |
parent | d3226bfa91d4500063c5c287c6256729dcbb3f88 (diff) | |
download | garage-61f3de649646d098812e6ddb814e20ce7e66ad94.tar.gz garage-61f3de649646d098812e6ddb814e20ce7e66ad94.zip |
Merge branch 'main' into next-v2next-v2
Diffstat (limited to 'src/api/s3/api_server.rs')
-rw-r--r-- | src/api/s3/api_server.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/api/s3/api_server.rs b/src/api/s3/api_server.rs index 171fbb9a..c8c28f3d 100644 --- a/src/api/s3/api_server.rs +++ b/src/api/s3/api_server.rs @@ -1,8 +1,6 @@ use std::borrow::Cow; use std::sync::Arc; -use async_trait::async_trait; - use hyper::header; use hyper::{body::Incoming as IncomingBody, Request, Response}; use tokio::sync::watch; @@ -71,7 +69,6 @@ impl S3ApiServer { } } -#[async_trait] impl ApiHandler for S3ApiServer { const API_NAME: &'static str = "s3"; const API_NAME_DISPLAY: &'static str = "S3"; |