style: replace wildcard import of garage model in website

this avoid rust-analyzer indicate invalid field error on `Redirect` for
`replace_prefix` and `replace_full` because of a conflict between struct :
`api::s3::website::Redirect` and `model::bucket_table::Redirect`
This commit is contained in:
Gwen Lg
2026-02-13 15:09:05 +01:00
committed by Alex
parent 70b8ebc8b6
commit 6f511fc149
+1 -1
View File
@@ -3,7 +3,7 @@ use quick_xml::de::from_reader;
use hyper::{header::HeaderName, Request, Response, StatusCode};
use serde::{Deserialize, Serialize};
use garage_model::bucket_table::{self, *};
use garage_model::bucket_table::{self, Bucket, WebsiteConfig};
use garage_api_common::helpers::*;