surrealpatch/src/net/status.rs

7 lines
233 B
Rust
Raw Normal View History

2020-06-29 15:36:01 +00:00
use warp::Filter;
2022-12-20 10:30:40 +00:00
#[allow(opaque_hidden_inferred_bound)]
2020-06-29 15:36:01 +00:00
pub fn config() -> impl Filter<Extract = impl warp::Reply, Error = warp::Rejection> + Clone {
warp::path("status").and(warp::path::end()).and(warp::get()).map(warp::reply)
}