2023-10-17 16:13:55 -04:00
|
|
|
use warp::Filter;
|
|
|
|
|
|
|
|
#[tokio::main]
|
|
|
|
async fn main() {
|
2023-10-21 05:21:52 -04:00
|
|
|
let hello = warp::get().map(|| format!("Hello world!"));
|
2023-10-17 16:13:55 -04:00
|
|
|
|
2023-10-19 13:12:21 -04:00
|
|
|
warp::serve(hello).run(([127, 0, 0, 1], 5309)).await;
|
|
|
|
}
|