#![deny(missing_docs)]
#![deny(rust_2018_idioms)]
pub mod approver_registry;
pub mod clock;
pub mod emit;
pub mod error;
pub mod ops_event;
pub mod redactor;
pub mod runtime;
pub mod tenant;
pub mod types;
pub use approver_registry::{ApproverId, ApproverRegistry, StaticApproverRegistry};
#[cfg(feature = "supervisor")]
pub mod supervisor;
#[cfg(feature = "governor")]
pub mod governor;
#[cfg(feature = "gates")]
pub mod gates;
#[cfg(feature = "escalation")]
pub mod escalation;
#[cfg(feature = "worklog")]
pub mod worklog;
#[cfg(feature = "handoff")]
pub mod handoff;
#[cfg(feature = "test-utils")]
pub mod test_fixtures;
pub use emit::emit_ops_event;
pub use error::{BuildError, OpsError};
pub use ops_event::OpsEvent;
pub use runtime::OpsRuntime;
pub use tenant::{spawn_with_context, TenantResolver};
pub use types::{
AgentId, AgentMeta, BudgetScope, KillReason, KillTrigger, ProviderId, RuntimeState, TenantId,
};