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