mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
19 lines
270 B
Rust
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::*};
|
|
}
|