2021-07-13 06:28:01 +00:00
|
|
|
pub mod entities;
|
2021-11-07 08:43:32 +00:00
|
|
|
|
|
|
|
#[cfg(feature = "flowy_client_sdk")]
|
2021-07-13 06:28:01 +00:00
|
|
|
pub mod event;
|
2021-11-07 08:43:32 +00:00
|
|
|
#[cfg(feature = "flowy_client_sdk")]
|
2021-07-13 06:28:01 +00:00
|
|
|
pub mod module;
|
2021-11-07 08:43:32 +00:00
|
|
|
#[cfg(feature = "flowy_client_sdk")]
|
|
|
|
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
|
|
|
|
2021-11-07 08:43:32 +00:00
|
|
|
pub mod errors;
|
|
|
|
pub mod protobuf;
|
2021-07-19 03:32:33 +00:00
|
|
|
|
2021-11-07 08:43:32 +00:00
|
|
|
#[cfg(feature = "flowy_client_sdk")]
|
2021-07-13 15:08:20 +00:00
|
|
|
pub mod prelude {
|
2021-08-24 13:38:53 +00:00
|
|
|
pub use crate::{
|
2021-10-16 04:24:02 +00:00
|
|
|
entities::{app::*, trash::*, view::*, workspace::*},
|
2021-08-24 13:38:53 +00:00
|
|
|
errors::*,
|
|
|
|
module::*,
|
|
|
|
services::*,
|
|
|
|
};
|
2021-07-13 15:08:20 +00:00
|
|
|
}
|
2021-11-07 08:43:32 +00:00
|
|
|
|
|
|
|
#[cfg(feature = "backend_service")]
|
|
|
|
pub mod backend_service {
|
|
|
|
pub use crate::protobuf::*;
|
|
|
|
}
|