mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
7e1cf1222f
1. replace unbounded sender with directory call using static runtime 2. sync + send for handler
17 lines
240 B
Rust
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::*};
|
|
}
|