//! Lambda execution runtime — pluggable backend behind a shared facade.
//!
//! [`LambdaRuntime`] owns the warm-pool bookkeeping and the HTTP
//! invocation path. The actual lifecycle (container/pod create, port
//! discovery, teardown) is delegated to whatever [`LambdaBackend`] the
//! facade was constructed with — today that's [`DockerBackend`]; a
//! Kubernetes backend ships in a follow-up.
pub
pub
pub
pub
pub use ;
pub use ;
pub use LambdaRuntime;
pub use ;
/// Backwards-compatible alias used by callers across the workspace
/// (eventbridge bridge, scheduler, lambda_delivery, reset state, server
/// main). Keeping the old name lets the trait extraction land without
/// churn in every consumer.
pub type ContainerRuntime = LambdaRuntime;