drogue-bazaar 0.3.0

A place to find tools for building your Rust application
Documentation
1
2
3
4
5
6
7
8
9
10
//! Application stack tooling.

/// Health checks
pub mod health;
/// Initializing your application stack.
pub mod init;
/// Application run method support.
pub mod run;

pub use run::{Main, Runtime, RuntimeConfig, Startup, StartupExt, SubMain, SubMainSeed};