We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fbf2fd4 + 95a863a commit 4a68720Copy full SHA for 4a68720
examples/axum/src/main.rs
@@ -6,6 +6,8 @@ use tokio::{io, net};
6
7
#[tokio::main(flavor = "current_thread")]
8
async fn main() -> io::Result<()> {
9
+ println!("Testing axum...");
10
+
11
let app = Router::new().route("/", get(root));
12
13
let listener = net::TcpListener::bind("0.0.0.0:9975").await?;
0 commit comments