summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-12-21 20:06:33 +0100
committerSanto Cariotti <santo@dcariotti.me>2024-12-21 20:06:33 +0100
commit1fdce941bb27451f879a36d14e2c3dcb7742a191 (patch)
tree211745c8cdf143af60e79f82e9871df4edeea278 /src/main.rs
parenta785f313f93f2d3b76a63c3adbd81f8fff1271b0 (diff)
Show possible error on app creation
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs31
1 files changed, 17 insertions, 14 deletions
diff --git a/src/main.rs b/src/main.rs
index b9b7f87..bf8afda 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -81,21 +81,24 @@ async fn create_app() -> Result<Router, AppError> {
#[tokio::main(flavor = "current_thread")]
async fn main() {
- if let Ok(app) = create_app().await {
- let host = &CONFIG.allowed_host;
+ match create_app().await {
+ Ok(app) => {
+ let host = &CONFIG.allowed_host;
- let addr = match host.parse::<SocketAddr>() {
- Ok(addr) => addr,
- Err(e) => {
- panic!("`{}` {}", host, e);
- }
- };
- tracing::info!("Listening on {}", addr);
+ let addr = match host.parse::<SocketAddr>() {
+ Ok(addr) => addr,
+ Err(e) => {
+ panic!("`{}` {}", host, e);
+ }
+ };
+ tracing::info!("Listening on {}", addr);
- axum::serve(TcpListener::bind(&addr).await.unwrap(), app)
- .await
- .unwrap();
- } else {
- tracing::error!("Can't create an application!");
+ axum::serve(TcpListener::bind(&addr).await.unwrap(), app)
+ .await
+ .unwrap();
+ }
+ Err(e) => {
+ tracing::error!("Can't create an application: {}", e);
+ }
}
}