pub mod handlers { use warp::{Reply, Rejection}; use warp::http::Response; pub async fn list() -> Result { Ok("test") } pub async fn post(name: String) -> Result { Ok("Post test") } }