aboutsummaryrefslogtreecommitdiff
path: root/src/bin/web.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/web.rs')
-rw-r--r--src/bin/web.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/bin/web.rs b/src/bin/web.rs
new file mode 100644
index 0000000..fed833b
--- /dev/null
+++ b/src/bin/web.rs
@@ -0,0 +1,19 @@
+use axum::{
+ response::Html,
+ routing::get,
+ Router,
+};
+
+async fn root_get() -> Html<&'static str> {
+ Html("<h1>Hello, world!</h1>")
+}
+
+#[tokio::main]
+async fn main() {
+ // build our application with a single route
+ let app = Router::new().route("/", get(root_get));
+
+ // run our app with hyper, listening globally on port 3000
+ let listener = tokio::net::TcpListener::bind("0.0.0.0:3000").await.unwrap();
+ axum::serve(listener, app).await.unwrap();
+}