24 lines
504 B
Rust
Raw Normal View History

#[cfg(feature = "flowy_client_sdk")]
pub mod event;
#[cfg(feature = "flowy_client_sdk")]
pub mod module;
#[cfg(feature = "flowy_client_sdk")]
mod services;
2021-07-13 17:19:39 +08:00
pub use flowy_workspace_infra::entities;
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
pub mod errors;
pub mod protobuf;
#[cfg(feature = "flowy_client_sdk")]
2021-07-13 23:08:20 +08:00
pub mod prelude {
pub use crate::{errors::*, module::*, services::*};
pub use flowy_workspace_infra::entities::{app::*, trash::*, view::*, workspace::*};
}