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