aural_isle/src/main.rs

9 lines
174 B
Rust
Raw Normal View History

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