28 lines
463 B
Rust
Raw Normal View History

2021-12-10 22:48:30 +08:00
pub use flowy_core_infra::entities;
2021-11-08 10:43:14 +08:00
pub mod event;
pub mod module;
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-12-06 15:49:21 +08:00
pub mod core;
2021-12-14 18:04:51 +08:00
2021-11-08 10:43:14 +08:00
mod notify;
pub mod protobuf;
2021-11-09 15:32:57 +08:00
mod util;
2021-07-13 23:08:20 +08:00
pub mod prelude {
2021-12-10 22:48:30 +08:00
pub use flowy_core_infra::entities::{app::*, trash::*, view::*, workspace::*};
2021-11-08 10:43:14 +08:00
2021-12-06 15:49:21 +08:00
pub use crate::{core::*, errors::*, module::*};
}
2021-12-14 18:04:51 +08:00
pub mod errors {
pub use flowy_error::{internal_error, ErrorCode, FlowyError, FlowyResult};
}