use warp::Filter; pub fn config() -> impl Filter + Clone { warp::path("status").and(warp::path::end()).and(warp::get()).map(warp::reply) }