aa-gateway 0.0.1-beta.1

Control plane — policy enforcement engine and agent registry for Agent Assembly
1
2
3
4
5
6
7
8
9
10
//! HTTP routes served by `aa-gateway`.
//!
//! In remote mode, the gateway exposes a small set of process-liveness
//! and admin endpoints over Axum. The full agent-control surface lives
//! in the sibling `aa-api` crate; this module only owns routes that
//! must be reachable even when `aa-api` is not mounted (today: `/healthz`
//! and `/api/v1/admin/status`).

pub mod admin_status;
pub mod healthz;