mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-14 20:00:51 +00:00

* feat: support tauri desktop * chore: support call flowy sdk command * chore: switch to svelte * chore: gen js protobuf * chore: import js protobuf * chore: call flowy sdk handler * chore: update scipts * chore: create index.ts * chore: track files * chore: gen ts event * chore: replace application icon * chore: migrate to react * chore: fix wanrings Co-authored-by: nathan <nathan@appflowy.io>
21 lines
480 B
Rust
21 lines
480 B
Rust
#[cfg(feature = "proto_gen")]
|
|
pub mod protobuf_file;
|
|
|
|
#[cfg(feature = "dart_event")]
|
|
pub mod dart_event;
|
|
|
|
#[cfg(feature = "ts_event")]
|
|
pub mod ts_event;
|
|
|
|
#[cfg(any(feature = "proto_gen", feature = "dart_event", feature = "ts_event"))]
|
|
mod flowy_toml;
|
|
|
|
#[cfg(any(feature = "proto_gen", feature = "dart_event", feature = "ts_event"))]
|
|
pub mod util;
|
|
|
|
#[derive(serde::Serialize, serde::Deserialize)]
|
|
pub struct ProtoCache {
|
|
pub structs: Vec<String>,
|
|
pub enums: Vec<String>,
|
|
}
|