fix fmt
This commit is contained in:
parent
0babf35c1e
commit
d8b6e31836
|
@ -2,8 +2,7 @@ use warp::Filter;
|
||||||
|
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
async fn main() {
|
async fn main() {
|
||||||
let hello = warp::get()
|
let hello = warp::get().map(|| format!("Hello world!"));
|
||||||
.map(|| format!("Hello world!"));
|
|
||||||
|
|
||||||
warp::serve(hello).run(([127, 0, 0, 1], 5309)).await;
|
warp::serve(hello).run(([127, 0, 0, 1], 5309)).await;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue