mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
e1c68c1b72
* chore: load plugin * chore: sidecar * chore: fix test * chore: clippy * chore: save chat config * chore: arc plugin * chore: add plugins * chore: clippy * chore: test streaming * chore: config chat * chore: stream message * chore: response with local ai * chore: fix compile * chore: config ui * chore: fix load plugin * chore: add docs * chore: update docs * chore: disable local ai * chore: fix compile * chore: clippy
29 lines
444 B
Rust
29 lines
444 B
Rust
pub use async_trait;
|
|
pub mod box_any;
|
|
|
|
#[cfg(feature = "compression")]
|
|
pub mod compression;
|
|
|
|
if_native! {
|
|
mod native;
|
|
pub mod file_util;
|
|
pub mod future {
|
|
pub use crate::native::future::*;
|
|
}
|
|
}
|
|
|
|
if_wasm! {
|
|
mod wasm;
|
|
pub mod future {
|
|
pub use crate::wasm::future::*;
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "isolate_flutter")]
|
|
pub mod isolate_stream;
|
|
pub mod priority_task;
|
|
pub mod ref_map;
|
|
pub mod stream_util;
|
|
pub mod util;
|
|
pub mod validator_fn;
|