mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-22 07:40:26 +00:00
27 lines
500 B
Rust
27 lines
500 B
Rust
![]() |
// #[cfg(feature = "adaptor_ot")]
|
||
|
// pub mod ot;
|
||
|
|
||
|
#[cfg(feature = "impl_from_serde")]
|
||
|
pub mod serde;
|
||
|
|
||
|
#[cfg(feature = "impl_from_dispatch_error")]
|
||
|
pub mod dispatch;
|
||
|
|
||
|
#[cfg(feature = "impl_from_reqwest")]
|
||
|
pub mod reqwest;
|
||
|
|
||
|
#[cfg(feature = "impl_from_sqlite")]
|
||
|
pub mod database;
|
||
|
|
||
|
#[cfg(feature = "impl_from_appflowy_cloud")]
|
||
|
pub mod http_server;
|
||
|
|
||
|
#[cfg(feature = "impl_from_collab")]
|
||
|
pub mod collab;
|
||
|
|
||
|
#[cfg(feature = "impl_from_postgres")]
|
||
|
mod postgres;
|
||
|
|
||
|
#[cfg(feature = "impl_from_tokio")]
|
||
|
mod tokio;
|