nakago_warp/
lib.rs

1//! # nakago-warp: A Warp HTTP routes integration for Nakago
2#![forbid(unsafe_code)]
3
4/// HTTP config
5pub mod config;
6
7/// Authentication
8pub mod auth;
9
10/// Errors
11pub mod errors;
12
13/// Service Initialization Helpers
14pub mod init;
15
16/// Testing
17pub mod test;
18
19/// Utils
20pub mod utils;
21
22#[macro_use]
23extern crate log;
24
25pub use config::Config;