aa-gateway 0.0.1-beta.1

Control plane — policy enforcement engine and agent registry for Agent Assembly
//! Remote Control-Plane mode runtime for `aa-gateway`.
//!
//! Bootstrap function and pre-flight checks invoked when `AA_MODE=remote`.
//! See AAASM-1577 (E17 S-C) for the design rationale: the gateway starts
//! as a multi-machine server binding `0.0.0.0:PORT` over plain HTTP or
//! optional TLS, exposes `/healthz`, and drains on SIGTERM.
//!
//! Submodules:
//!
//! - [`tls`] — pre-flight cert / key validation (AAASM-1702 / ST-2)
//! - [`error`] — `GatewayError` reported by the bootstrap path
//! - `server` — listener bootstrap (AAASM-1709 / ST-3, lands in subsequent commits)

pub mod error;
pub mod server;
pub mod tls;

pub use error::GatewayError;
pub use server::{router, start_remote, start_remote_with_handle};