From d6d399d97b8064b2b55fdaac839db2968cd71ba5 Mon Sep 17 00:00:00 2001 From: Tokarak <63452145+Tokarak@users.noreply.github.com> Date: Tue, 18 Mar 2025 03:38:51 +0000 Subject: [PATCH] cargo fmt --- src/main.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index d56d06e..3cd0d65 100644 --- a/src/main.rs +++ b/src/main.rs @@ -81,7 +81,9 @@ async fn resource(body: &str, content_type: &str, cache: bool) -> Result Result, hyper::Error> { Response::builder() .status(200) .header("content-type", "application/json") - .body(Body::from(fetch_instances().await?))// Could fail if no internet + .body(Body::from(fetch_instances().await?)) // Could fail if no internet .unwrap_or_default(), ) }