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

@ -56,10 +56,10 @@ async fn menu(Query(params): Query<MenuParameters>) -> impl IntoResponse {
current: false,
},
],
}.into_response()
}
.into_response()
}
pub fn get_routes() -> Router {
Router::new()
.route("/menu", routing::get(menu))
}
Router::new().route("/menu", routing::get(menu))
}