AppFlowy/rust-lib/flowy-dispatch/src/lib.rs
2021-07-10 16:27:20 +08:00

19 lines
270 B
Rust

#![feature(try_trait)]
mod errors;
mod module;
mod request;
mod response;
mod service;
mod util;
mod data;
mod dispatch;
mod system;
pub use errors::Error;
pub mod prelude {
pub use crate::{data::*, dispatch::*, errors::*, module::*, request::*, response::*};
}