remem-ai 0.6.38

Local-first coding agent memory for Claude Code and OpenAI Codex
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use axum::{response::IntoResponse, Json};

use super::super::types::HealthResponse;

pub(in crate::api) async fn handle_health() -> impl IntoResponse {
    Json(HealthResponse {
        ok: true,
        version: crate::build_info::package_version(),
        api_version: 1,
        schema_version: crate::build_info::binary_schema_version(),
    })
}