refactor(portal): split hardening and kpi modules

This commit is contained in:
igor04091968
2026-06-07 14:36:42 +03:00
parent 2fb3271558
commit 0b0bab61bb
10 changed files with 1553 additions and 1300 deletions
@@ -0,0 +1,10 @@
use serde_json::{Value, json};
use crate::now;
pub(crate) fn build_healthz() -> Value {
json!({
"status": "ok",
"generated_at_utc": now(),
})
}