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