mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
6bb1c4e89c
* chore: update rustfmt * chore: apply rustfmt format
23 lines
327 B
Rust
23 lines
327 B
Rust
mod errors;
|
|
mod module;
|
|
mod request;
|
|
mod response;
|
|
mod service;
|
|
pub mod util;
|
|
|
|
mod byte_trait;
|
|
mod data;
|
|
mod dispatcher;
|
|
|
|
#[macro_use]
|
|
pub mod macros;
|
|
pub mod runtime;
|
|
|
|
pub use errors::Error;
|
|
|
|
pub mod prelude {
|
|
pub use crate::{
|
|
byte_trait::*, data::*, dispatcher::*, errors::*, module::*, request::*, response::*,
|
|
};
|
|
}
|