2021-11-08 10:43:14 +08:00
|
|
|
pub use flowy_workspace_infra::entities;
|
|
|
|
|
2021-07-13 14:28:01 +08:00
|
|
|
pub mod event;
|
|
|
|
pub mod module;
|
2021-11-07 16:43:32 +08:00
|
|
|
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
|
|
|
|
2021-11-07 16:43:32 +08:00
|
|
|
pub mod errors;
|
2021-11-08 10:43:14 +08:00
|
|
|
pub mod handlers;
|
|
|
|
mod notify;
|
2021-11-07 16:43:32 +08:00
|
|
|
pub mod protobuf;
|
2021-11-08 10:43:14 +08:00
|
|
|
mod sql_tables;
|
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 {
|
2021-11-07 23:23:16 +08:00
|
|
|
pub use flowy_workspace_infra::entities::{app::*, trash::*, view::*, workspace::*};
|
2021-11-08 10:43:14 +08:00
|
|
|
|
|
|
|
pub use crate::{errors::*, module::*, services::*};
|
2021-11-07 16:43:32 +08:00
|
|
|
}
|