From 90918a07120976395aef1447d02f8e3d1f76f8a7 Mon Sep 17 00:00:00 2001 From: Nathan Flurry Date: Sun, 5 Oct 2025 13:39:36 -0700 Subject: [PATCH] chore(core): include runtime in health endpoint --- packages/common/api-builder/src/router.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/common/api-builder/src/router.rs b/packages/common/api-builder/src/router.rs index 7651650459..57fad10fa4 100644 --- a/packages/common/api-builder/src/router.rs +++ b/packages/common/api-builder/src/router.rs @@ -78,7 +78,8 @@ pub async fn create_router( pub async fn health_check() -> impl IntoResponse { Json(json!({ "status": "ok", - "timestamp": chrono::Utc::now().timestamp_millis() + "runtime": "engine", + "version": env!("CARGO_PKG_VERSION") })) }