chore: cargo fmt — settle formatting drift blocking the release gate

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
archipelago
2026-07-17 11:41:31 -04:00
co-authored by Claude Fable 5
parent a76a92cff8
commit 7eaf99873e
5 changed files with 16 additions and 11 deletions
+5 -1
View File
@@ -207,7 +207,11 @@ impl ApiHandler {
hyper::Body::from(r#"{"error":"invalid backup id"}"#),
));
}
let file = self.config.data_dir.join("backups").join(format!("{id}.bak"));
let file = self
.config
.data_dir
.join("backups")
.join(format!("{id}.bak"));
match tokio::fs::read(&file).await {
Ok(bytes) => Ok(Response::builder()
.status(StatusCode::OK)