2021-11-27 19:20:22 +08:00

9 lines
132 B
Rust

#![allow(clippy::module_inception)]
mod boxed;
mod handler;
mod service;
pub use boxed::*;
pub use handler::*;
pub use service::*;