add log call

This commit is contained in:
Luna 2023-06-11 18:05:48 -03:00
parent a24799e302
commit 7516e47bb7
1 changed files with 1 additions and 0 deletions

View File

@ -21,6 +21,7 @@ async fn main() {
.layer(axum::extract::DefaultBodyLimit::max(100 * 1024 * 1024));
// run it with hyper on localhost:3000
log::info!("running on 0.0.0.0:6679 to localhost:4443");
axum::Server::bind(&"0.0.0.0:6679".parse().unwrap())
.serve(app.into_make_service())
.await