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(), ) }