feat: Rewrite routes, pages and components to be more HATEOAS

This commit is contained in:
2024-08-23 18:45:43 +02:00
committed by florian_briand
parent 7487b34a17
commit 8ce18e53d5
13 changed files with 201 additions and 57 deletions

View File

@ -0,0 +1,7 @@
use axum::{routing, Router};
mod cps;
pub fn get_routes() -> Router {
Router::new().route("/cps", routing::get(cps::cps))
}