rkt 0.6.0

Web framework with a focus on usability, security, extensibility, and speed. (Community Fork)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Shutdown configuration and notification handle.

mod config;
mod handle;
mod sig;
mod tripwire;

pub(crate) use handle::Stages;
pub(crate) use tripwire::TripWire;

pub use config::ShutdownConfig;
pub use handle::Shutdown;
pub use sig::Sig;