Fix fmt
https://claude.ai/code/session_01T4oq8AnYjs6JcobndQzTmW
change
commit bb1abcb865a58583592404ef6b475f8a0e81c4ed
author Claude <noreply@anthropic.com>
date
parent d823e1ac
diff --git a/quire-server/src/bin/quire/server.rs b/quire-server/src/bin/quire/server.rs
index a99c7d9..e363a62 100644
--- a/quire-server/src/bin/quire/server.rs
+++ b/quire-server/src/bin/quire/server.rs
@@ -50,7 +50,10 @@ pub async fn run(quire: &Quire, web_routes: axum::Router, api_routes: axum::Rout
     tracing::info!(path = %db_path.display(), "opening database");
     let mut db = quire::db::open(&db_path).into_diagnostic()?;
     if let Err(e) = quire::db::migrate(&mut db) {
-        tracing::error!(error = &e as &(dyn std::error::Error + 'static), "migration failed");
+        tracing::error!(
+            error = &e as &(dyn std::error::Error + 'static),
+            "migration failed"
+        );
         return Err(e.into());
     }
     drop(db);