2022-01-27 20:39:54 +08:00
|
|
|
pub use flowy_folder_data_model::entities;
|
2022-01-30 10:33:21 +08:00
|
|
|
pub mod event_map;
|
2022-01-22 18:48:43 +08:00
|
|
|
pub mod services;
|
2021-07-13 17:19:39 +08:00
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
mod macros;
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate flowy_database;
|
2021-07-13 23:08:20 +08:00
|
|
|
|
2022-01-13 11:16:26 +08:00
|
|
|
mod dart_notification;
|
2022-03-05 21:15:10 +08:00
|
|
|
pub mod manager;
|
2021-11-07 16:43:32 +08:00
|
|
|
pub mod protobuf;
|
2021-11-09 15:32:57 +08:00
|
|
|
mod util;
|
2021-07-19 11:32:33 +08:00
|
|
|
|
2021-07-13 23:08:20 +08:00
|
|
|
pub mod prelude {
|
2022-01-27 20:39:54 +08:00
|
|
|
pub use flowy_folder_data_model::entities::{app::*, trash::*, view::*, workspace::*};
|
2021-11-08 10:43:14 +08:00
|
|
|
|
2022-01-30 10:33:21 +08:00
|
|
|
pub use crate::{errors::*, event_map::*};
|
2021-11-07 16:43:32 +08:00
|
|
|
}
|
2021-12-14 18:04:51 +08:00
|
|
|
|
|
|
|
pub mod errors {
|
|
|
|
pub use flowy_error::{internal_error, ErrorCode, FlowyError, FlowyResult};
|
|
|
|
}
|