summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to 'crates')
-rw-r--r--crates/web/Cargo.toml11
-rw-r--r--crates/web/src/main.rs20
2 files changed, 31 insertions, 0 deletions
diff --git a/crates/web/Cargo.toml b/crates/web/Cargo.toml
new file mode 100644
index 0000000..62a3504
--- /dev/null
+++ b/crates/web/Cargo.toml
@@ -0,0 +1,11 @@
+[package]
+name = "argonaut-web"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
+axum = "0.7.5"
+tracing = { workspace = true }
+tracing-subscriber = { workspace = true }
+tokio = { workspace = true }
+serde = { workspace = true }
diff --git a/crates/web/src/main.rs b/crates/web/src/main.rs
new file mode 100644
index 0000000..f641ce0
--- /dev/null
+++ b/crates/web/src/main.rs
@@ -0,0 +1,20 @@
+use axum::{
+ http::StatusCode,
+ routing::{get, post},
+ Json, Router,
+};
+use serde::{Deserialize, Serialize};
+
+#[tokio::main(flavor = "current_thread")]
+async fn main() {
+ tracing_subscriber::fmt::init();
+
+ let app = Router::new().route("/", get(root));
+
+ let listener = tokio::net::TcpListener::bind("0.0.0.0:3000").await.unwrap();
+ axum::serve(listener, app).await.unwrap();
+}
+
+async fn root() -> &'static str {
+ "Hello, World!"
+}