diff --git a/examples/axum/src/main.rs b/examples/axum/src/main.rs index 56932d1ed..1ea96f19c 100644 --- a/examples/axum/src/main.rs +++ b/examples/axum/src/main.rs @@ -6,6 +6,8 @@ use tokio::{io, net}; #[tokio::main(flavor = "current_thread")] async fn main() -> io::Result<()> { + println!("Testing axum..."); + let app = Router::new().route("/", get(root)); let listener = net::TcpListener::bind("0.0.0.0:9975").await?;