Implémentation "HATEOAS" de l'interface pour HTMX et update des URLs qui fonctionne ! #57

Merged
florian_briand merged 12 commits from feat/54_update_url_on_navbar_navigation into main 2024-08-30 18:25:53 +02:00
Showing only changes of commit 216eb73757 - Show all commits

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))
florian_briand marked this conversation as resolved Outdated

micro typo axum::routing -> routing

micro typo `axum::routing` -> `routing`
.route("/cps", routing::get(cps::cps))
}