Nathan.fooo 6bb1c4e89c
feat: run rustfmt with custom defined fmt configuration (#1848)
* chore: update rustfmt

* chore: apply rustfmt format
2023-02-13 09:29:49 +08:00

23 lines
348 B
Rust

pub mod entities;
pub mod event_map;
pub mod services;
#[macro_use]
mod macros;
#[macro_use]
extern crate flowy_sqlite;
pub mod manager;
mod notification;
pub mod protobuf;
mod util;
pub mod prelude {
pub use crate::{errors::*, event_map::*};
}
pub mod errors {
pub use flowy_error::{internal_error, ErrorCode, FlowyError, FlowyResult};
}