mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-28 03:21:54 +00:00
27 lines
484 B
Rust
Executable File
27 lines
484 B
Rust
Executable File
pub use flowy_core_data_model::entities;
|
|
|
|
pub mod event;
|
|
pub mod module;
|
|
pub mod services;
|
|
|
|
#[macro_use]
|
|
mod macros;
|
|
|
|
#[macro_use]
|
|
extern crate flowy_database;
|
|
|
|
pub mod controller;
|
|
mod dart_notification;
|
|
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};
|
|
}
|