AppFlowy-Cloud/libs/client-api/src/lib.rs

22 lines
399 B
Rust

mod http;
#[cfg(feature = "collab-sync")]
pub mod collab_sync;
pub mod notify;
pub mod ws;
pub use http::*;
pub mod error {
pub use shared_entity::app_error::AppError;
pub use shared_entity::error_code::ErrorCode;
}
// Export all entities that will be used in the frontend application
pub mod entity {
pub use database_entity::*;
pub use gotrue_entity::*;
pub use shared_entity::*;
}