Skip to content

Commit 4a68720

Browse files
authored
Merge pull request #639 from stlankes/axum
add some debug messages
2 parents fbf2fd4 + 95a863a commit 4a68720

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

examples/axum/src/main.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ use tokio::{io, net};
66

77
#[tokio::main(flavor = "current_thread")]
88
async fn main() -> io::Result<()> {
9+
println!("Testing axum...");
10+
911
let app = Router::new().route("/", get(root));
1012

1113
let listener = net::TcpListener::bind("0.0.0.0:9975").await?;

0 commit comments

Comments
 (0)