This commit is contained in:
2023-07-24 00:45:52 +02:00
parent 6bee9ca631
commit a8ca9c0d2c

View File

@@ -59,6 +59,11 @@ async fn get_router() -> Router {
#[tokio::main] #[tokio::main]
async fn main() { async fn main() {
tracing_subscriber::fmt()
.with_target(false)
.compact()
.init();
let addr = SocketAddr::from(([0, 0, 0, 0], 8080)); let addr = SocketAddr::from(([0, 0, 0, 0], 8080));
let app = get_router().await; let app = get_router().await;