From 82684093381b458c1b8a629311a79104da9628c3 Mon Sep 17 00:00:00 2001 From: Chloe <25387744+qimiko@users.noreply.github.com> Date: Sun, 24 Nov 2024 10:29:06 -0700 Subject: [PATCH] this identation was bothering me --- src/endpoints/loader.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/endpoints/loader.rs b/src/endpoints/loader.rs index de9b8ff..2fdda22 100644 --- a/src/endpoints/loader.rs +++ b/src/endpoints/loader.rs @@ -63,8 +63,8 @@ pub async fn get_one( }; Ok(web::Json(ApiResponse { - error: "".to_string(), - payload: version, + error: "".to_string(), + payload: version, })) } @@ -142,7 +142,7 @@ pub async fn get_many( ).await?; Ok(web::Json(ApiResponse { - error: "".to_string(), - payload: versions, + error: "".to_string(), + payload: versions, })) }