fixup! refacto: move home code into a dedicated file and rename index to home everywhere

This commit is contained in:
Florian Briand 2024-08-27 11:28:36 +02:00
parent d4e565601a
commit 216eb73757
Signed by: florian_briand
GPG Key ID: CC981B9E6B98E70B

View File

@ -5,6 +5,6 @@ mod home;
pub fn get_routes() -> Router {
Router::new()
.route("/", axum::routing::get(home::home))
.route("/", routing::get(home::home))
.route("/cps", routing::get(cps::cps))
}