//! HTTP handlers for the NoETL Control Plane API.
//!
//! This module contains all route handlers organized by domain.
pub mod catalog;
pub mod container_callback;
pub mod credentials;
pub mod cross_region;
pub mod dashboard;
pub mod database;
pub mod events;
pub mod execute;
pub mod executions;
pub mod health;
pub mod internal;
pub mod keychain;
pub mod replay;
pub mod runtime;
pub mod secret_audit;
pub mod sharding;
pub mod system;
pub mod variables;
pub mod wallet_rotate;
pub use events::{get_command, handle_event};
pub use execute::execute;
pub use health::{api_health, health_check};