AppFlowy/rust-lib/flowy-sys/src/lib.rs
appflowy 7e1cf1222f [refactor]:
1. replace unbounded sender with directory call using static runtime
2. sync + send for handler
2021-07-02 20:45:51 +08:00

17 lines
240 B
Rust

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