use pavex::blueprint::{router::GET, Blueprint}; use pavex::f; pub fn c() -> Box { todo!() } pub fn blueprint() -> Blueprint { let mut bp = Blueprint::new(); bp.route(GET, "/home", f!(crate::c)); bp }