mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
23 lines
359 B
Rust
23 lines
359 B
Rust
pub mod entities;
|
|
pub mod event_map;
|
|
pub mod services;
|
|
|
|
#[macro_use]
|
|
mod macros;
|
|
|
|
#[macro_use]
|
|
extern crate flowy_database;
|
|
|
|
mod dart_notification;
|
|
pub mod manager;
|
|
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};
|
|
}
|