18 lines
412 B
Rust
Raw Normal View History

2022-02-17 20:10:29 +08:00
#[cfg(feature = "protobuf_file_gen")]
2022-02-15 21:27:00 +08:00
pub mod protobuf_file;
#[cfg(feature = "dart_event")]
pub mod dart_event;
2022-02-17 20:10:29 +08:00
#[cfg(any(feature = "protobuf_file_gen", feature = "dart_event"))]
2022-02-15 21:27:00 +08:00
mod flowy_toml;
2022-02-17 20:10:29 +08:00
#[cfg(any(feature = "protobuf_file_gen", feature = "dart_event"))]
2022-02-16 10:00:31 +08:00
pub mod util;
2022-02-16 12:22:26 +08:00
#[derive(serde::Serialize, serde::Deserialize)]
pub struct ProtoCache {
pub structs: Vec<String>,
pub enums: Vec<String>,
}