aa-gateway 0.0.1-beta.1

Control plane — policy enforcement engine and agent registry for Agent Assembly
//! Team-level approval routing, escalation, and routing configuration.

pub mod audit_sink;
pub mod clock;
pub mod db_escalation_scheduler;
pub mod escalation;
mod persistence;
pub mod repo;
pub mod router;
pub mod routing_config;
pub mod sqlite_repo;

pub use audit_sink::{AuditEventSink, NoopAuditSink};
pub use clock::{Clock, FakeClock, SystemClock};
pub use db_escalation_scheduler::{DbEscalationError, DbEscalationScheduler};
pub use repo::{
    global_default, ApprovalRoutingRepo, RepoError, DEFAULT_ESCALATION_ROLE, DEFAULT_ESCALATION_TIMEOUT_SECS,
};
pub use router::{ApprovalRouter, RouterError, RoutingDecision};
pub use routing_config::{default_routing_config_path, RoutingConfigStore, TeamRoutingConfig};
pub use sqlite_repo::SqliteApprovalRoutingRepo;