eclaw 0.0.20

Personal AI assistant powered by Elph
1
2
3
4
5
6
7
8
mod health;

use axum::Router;
use axum::routing::get;

pub fn router() -> Router {
    Router::new().route("/health", get(health::health))
}