diff options
author | Alex Auvolat <alex@adnab.me> | 2022-05-13 15:10:52 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-05-13 15:10:52 +0200 |
commit | f82b938033f1a01a136315b5f37ecb89b78bca0c (patch) | |
tree | aacba0081d4bd854f3d29a6b9d94202ef94b980d /src/api/s3/website.rs | |
parent | 96b11524d53b3616a28f33e2b057655be1639f6f (diff) | |
download | garage-f82b938033f1a01a136315b5f37ecb89b78bca0c.tar.gz garage-f82b938033f1a01a136315b5f37ecb89b78bca0c.zip |
Rename error::Error to s3::error::Error
Diffstat (limited to 'src/api/s3/website.rs')
-rw-r--r-- | src/api/s3/website.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/s3/website.rs b/src/api/s3/website.rs index 4fc7b7bb..b2582c4b 100644 --- a/src/api/s3/website.rs +++ b/src/api/s3/website.rs @@ -4,7 +4,7 @@ use std::sync::Arc; use hyper::{Body, Request, Response, StatusCode}; use serde::{Deserialize, Serialize}; -use crate::error::*; +use crate::s3::error::*; use crate::s3::xml::{to_xml_with_header, xmlns_tag, IntValue, Value}; use crate::signature::verify_signed_content; |