#![allow(dead_code)]

pub mod alpha;
pub mod beta;
pub mod gamma;
pub mod delta;
pub mod epsilon;

pub use crate::alpha::Alpha;
pub use crate::beta::Beta;
pub use crate::gamma::Gamma;
pub use crate::delta::Delta;
pub use crate::epsilon::Epsilon;
pub use crate::zeta::*;

pub fn bootstrap_one() {
    let _ = tokio::runtime::Runtime::new();
}

pub fn bootstrap_two() {
    let _ = tokio::runtime::Runtime::new();
}

pub fn bootstrap_three() {
    let _ = tokio::runtime::Runtime::new();
}

pub fn bootstrap_four() {
    let _ = tokio::runtime::Runtime::new();
}

pub fn bootstrap_five() {
    let _ = tokio::runtime::Runtime::new();
}
