summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2022-08-21 18:32:56 +0200
committerSanto Cariotti <santo@dcariotti.me>2022-08-21 18:32:56 +0200
commit66e677a8543285ed424d616092fb09c518b32fa4 (patch)
treea4978e1298ce7c131cd25701e02cdbe24e2f15ad /src/main.rs
Init
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
new file mode 100644
index 0000000..ab463b8
--- /dev/null
+++ b/src/main.rs
@@ -0,0 +1,48 @@
+mod errors;
+mod logger;
+
+use axum::{http::header, routing::get, Json, Router};
+use serde::Serialize;
+use tower_http::sensitive_headers::SetSensitiveHeadersLayer;
+
+#[tokio::main]
+async fn main() {
+ let app = create_app().await;
+
+ let addr: String =
+ std::env::var("ALLOWED_HOST").unwrap_or_else(|_| "localhost:3000".to_string());
+ tracing::info!("Listening on {}", addr);
+
+ axum::Server::bind(&"127.0.0.1:3000".parse().unwrap())
+ .serve(app.into_make_service())
+ .await
+ .unwrap();
+}
+
+async fn create_app() -> Router {
+ logger::setup();
+
+ Router::new()
+ .route("/", get(hej))
+ // Mark the `Authorization` request header as sensitive so it doesn't
+ // show in logs.
+ .layer(SetSensitiveHeadersLayer::new(std::iter::once(
+ header::AUTHORIZATION,
+ )))
+}
+
+// Example root which says hi
+async fn hej() -> Result<Json<Hej>, errors::Error> {
+ Ok(Json(Hej::new("hej verden".to_string())))
+}
+
+#[derive(Debug, Serialize)]
+struct Hej {
+ hello: String,
+}
+
+impl Hej {
+ fn new(hello: String) -> Self {
+ Self { hello }
+ }
+}