rave/src/rest.rs

8 lines
168 B
Rust
Raw Normal View History

2023-10-08 19:53:42 +00:00
use poem::{Endpoint, EndpointExt, Route};
mod ping;
pub fn build() -> Box<dyn Endpoint<Output = poem::Response>> {
Route::new().at("/ping", ping::ping).boxed()
}