1 2 3 4 5 6 7 8 9
//! Application layer — the `ServiceBootstrap` builder and `BootstrapCtx`. pub mod ctx; mod builder; mod serve; pub use builder::{ServiceBootstrap, ShutdownHookFn}; pub use ctx::BootstrapCtx;