From 3cd6b6e8b3eb4506f20629461aa1e119f55dd149 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Sat, 15 Mar 2025 18:02:13 -0400 Subject: [PATCH] added health, fallback not found endpoints --- backend/public/src/main.rs | 3 ++- backend/public/src/routes/root.rs | 11 ++++++++--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/backend/public/src/main.rs b/backend/public/src/main.rs index 9f62690..fd6093c 100644 --- a/backend/public/src/main.rs +++ b/backend/public/src/main.rs @@ -115,7 +115,8 @@ async fn main() { TraceLayer::new_for_http() .make_span_with(trace::DefaultMakeSpan::new().level(tracing::Level::INFO)) .on_response(trace::DefaultOnResponse::new().level(tracing::Level::INFO)), - ); + ) + .fallback(routes::root::RootRoute::not_found); // .layer(cors); //.layer(GovernorLayer { // config: governor_conf, diff --git a/backend/public/src/routes/root.rs b/backend/public/src/routes/root.rs index ab23023..643e359 100644 --- a/backend/public/src/routes/root.rs +++ b/backend/public/src/routes/root.rs @@ -8,15 +8,20 @@ use axum::{ pub struct RootRoute; impl RootRoute { pub fn routes() -> Router { - Router::new().route("/", get(RootRoute::root)) - // .fallback(RootRoute::not_found) + Router::new() + .route("/", get(RootRoute::root)) + .route("/health", get(RootRoute::health)) } async fn root() -> Html<&'static str> { Html("

Copyright Wyatt J. Miller 2024

") } - async fn not_found() -> impl IntoResponse { + pub async fn not_found() -> impl IntoResponse { (StatusCode::NOT_FOUND, "¯\\_(ツ)_/¯") } + + async fn health() -> impl IntoResponse { + StatusCode::OK + } }