reifydb-sub-admin 0.1.5

Admin subsystem for web-based administration
Documentation
1
2
3
4
5
6
7
8
9
// Copyright (c) reifydb.com 2025
// This file is licensed under the AGPL-3.0-or-later, see license.md file

use reifydb_engine::StandardEngine;
use reifydb_network::HttpResponse;

pub fn handle_health(_engine: &StandardEngine) -> HttpResponse {
	HttpResponse::ok().with_json(r#"{"status":"healthy","service":"reifydb-admin","version":"0.0.1"}"#)
}