revert back to ?'s for error propigation
This commit is contained in:
parent
b5e83256d9
commit
8578011107
|
@ -27,8 +27,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
|
||||||
.mount("/", routes![cors])
|
.mount("/", routes![cors])
|
||||||
.attach(cors)
|
.attach(cors)
|
||||||
.launch()
|
.launch()
|
||||||
.await
|
.await?;
|
||||||
.ok();
|
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,8 +55,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
|
||||||
.mount("/", routes![manual, manual_options])
|
.mount("/", routes![manual, manual_options])
|
||||||
.manage(cors)
|
.manage(cors)
|
||||||
.launch()
|
.launch()
|
||||||
.await
|
.await?;
|
||||||
.ok();
|
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue