style: Format code with fmt

This commit is contained in:
Simon C
2024-08-08 15:01:28 +02:00
parent b10fc30984
commit 0eaf238735
8 changed files with 28 additions and 18 deletions

View File

@ -7,4 +7,4 @@ struct CpsResponse;
pub async fn cps() -> impl IntoResponse {
CpsResponse.into_response()
}
}

View File

@ -7,4 +7,4 @@ struct HomeResponse;
pub async fn home() -> impl IntoResponse {
HomeResponse.into_response()
}
}

View File

@ -7,4 +7,4 @@ pub fn get_routes() -> Router {
Router::new()
.route("/home", routing::get(home::home))
.route("/cps", routing::get(cps::cps))
}
}