Files
aural_isle/src/main.rs
cascode f55d57c8ef
All checks were successful
checks / format (push) Successful in 6s
fix fmt
2023-10-21 02:21:52 -07:00

9 lines
174 B
Rust

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