1//! Shutdown configuration and notification handle. 2 3mod tripwire; 4mod handle; 5mod sig; 6mod config; 7 8pub(crate) use tripwire::TripWire; 9pub(crate) use handle::Stages; 10 11pub use config::ShutdownConfig; 12pub use handle::Shutdown; 13pub use sig::Sig;