mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-23 17:11:23 +00:00
28 lines
489 B
Rust
28 lines
489 B
Rust
pub use flowy_core_data_model::entities;
|
|
|
|
pub mod event;
|
|
pub mod module;
|
|
mod services;
|
|
|
|
#[macro_use]
|
|
mod macros;
|
|
|
|
#[macro_use]
|
|
extern crate flowy_database;
|
|
|
|
pub mod context;
|
|
pub mod event_handler;
|
|
mod notify;
|
|
pub mod protobuf;
|
|
mod util;
|
|
|
|
pub mod prelude {
|
|
pub use flowy_core_data_model::entities::{app::*, trash::*, view::*, workspace::*};
|
|
|
|
pub use crate::{errors::*, module::*};
|
|
}
|
|
|
|
pub mod errors {
|
|
pub use flowy_error::{internal_error, ErrorCode, FlowyError, FlowyResult};
|
|
}
|