23 lines
404 B
Rust
23 lines
404 B
Rust
pub mod access;
|
|
pub mod agents;
|
|
pub mod auth;
|
|
pub mod auth_profiles;
|
|
pub mod capabilities;
|
|
pub mod machine_auth;
|
|
pub mod observability;
|
|
pub mod operations;
|
|
pub mod secrets;
|
|
pub mod streaming;
|
|
pub mod upstreams;
|
|
pub mod workspaces;
|
|
|
|
use axum::Json;
|
|
use serde_json::json;
|
|
|
|
pub async fn health() -> Json<serde_json::Value> {
|
|
Json(json!({
|
|
"service": "admin-api",
|
|
"status": "ok"
|
|
}))
|
|
}
|