mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
31 lines
394 B
Rust
31 lines
394 B
Rust
#![feature(try_trait)]
|
|
|
|
mod errors;
|
|
mod module;
|
|
mod request;
|
|
mod response;
|
|
mod service;
|
|
mod util;
|
|
|
|
mod byte_trait;
|
|
mod data;
|
|
mod dispatch;
|
|
mod system;
|
|
|
|
#[macro_use]
|
|
pub mod macros;
|
|
|
|
pub use errors::Error;
|
|
|
|
pub mod prelude {
|
|
pub use crate::{
|
|
byte_trait::*,
|
|
data::*,
|
|
dispatch::*,
|
|
errors::*,
|
|
module::*,
|
|
request::*,
|
|
response::*,
|
|
};
|
|
}
|