diff --git a/src/main.rs b/src/main.rs index 7f6bb1f..bd5795f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,7 +5,5 @@ async fn main() { let hello = warp::get() .map(|| format!("Hello world!")); - warp::serve(hello) - .run(([127, 0, 0, 1], 5309)) - .await; -} \ No newline at end of file + warp::serve(hello).run(([127, 0, 0, 1], 5309)).await; +}