diff --git a/src/main.rs b/src/main.rs index 1b93caf..73e271b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -4,7 +4,8 @@ use std::io::prelude::*; use std::path::Path; use axum::{ - http::StatusCode, + body::Body, + http::{Response, StatusCode}, routing::{get, post}, Json, Router, }; @@ -64,12 +65,17 @@ fn write_status(s: Status) -> String { // Just output the current file. We assume it to be consistent. // It may cease to or not yet exist. Then create an initial status and persist. -async fn root() -> String { - if std::path::Path::new(STATUS_FILE).exists() { +async fn root() -> Response { + let res = if std::path::Path::new(STATUS_FILE).exists() { read_to_string(STATUS_FILE).unwrap_or(String::from("KAPOTT")) } else { write_status(init_status()) - } + }; + Response::builder() + .status(StatusCode::OK) + .header("Content-Type", "application/json") + .body(Body::from(res)) + .unwrap() } // Input type for the API: Both fields are optional.