nakago_figment/
lib.rs

1//! # nakago-ws: A Warp HTTP routes integration for Nakago
2#![forbid(unsafe_code)]
3
4/// The extensible Config Loader
5pub mod loader;
6
7/// Config loader init helpers
8pub mod loaders;
9
10/// The FromRef Utility
11pub mod from_ref;
12
13/// The Config trait
14pub mod config;
15
16pub use config::Config;
17pub use from_ref::FromRef;
18pub use loader::Loader;
19pub use loaders::{Init, Loaders};