From ce518880706fd798cca8c785c40502c29253f35f Mon Sep 17 00:00:00 2001 From: Sundog Date: Thu, 19 Oct 2023 13:12:21 -0400 Subject: [PATCH] updates main.rs, applies default formatting from rustfmt --- src/main.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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; +}