1use axum::Json; 2use serde_json::{json, Value}; 3 4pub async fn healthcheck_v1() -> Json<Value> { 5 Json(json!({ "message": "Welcome to Dogy API v1" })) 6}