Code formatting
simodels Build / Rustfmt (pull_request) Successful in 1m54s
labyrinth release Tagging / release (pull_request) Successful in 1m54s
simodels Build / Clippy (pull_request) Successful in 2m30s
simodels Build / Test Suite (pull_request) Successful in 2m52s
simodels Build / build (pull_request) Successful in 2m53s
simodels Build / Check (pull_request) Successful in 2m56s

This commit is contained in:
2026-08-10 17:16:18 -04:00
parent 8464401337
commit 2b6127f6a6
+2 -3
View File
@@ -37,8 +37,7 @@ pub async fn init_client(config: &config::Config) -> aws_sdk_s3::Client {
.force_path_style(true)
.build();
let client = aws_sdk_s3::Client::from_conf(s3_config);
client
aws_sdk_s3::Client::from_conf(s3_config)
}
#[derive(Debug)]
@@ -83,7 +82,7 @@ impl Labyrinth {
match client
.get_object()
.bucket(&self.config.bucket.clone())
.bucket(self.config.bucket.clone())
.key(file_key)
.send()
.await