refactor: add code_gen crate

This commit is contained in:
appflowy 2022-02-15 21:27:00 +08:00
parent 427d2c2e25
commit 0933935071
36 changed files with 343 additions and 114 deletions

View file

@ -0,0 +1,11 @@
#[cfg(feature = "pb_gen")]
pub mod protobuf_file;
#[cfg(feature = "dart_event")]
pub mod dart_event;
#[cfg(any(feature = "pb_gen", feature = "dart_event"))]
mod flowy_toml;
#[cfg(any(feature = "pb_gen", feature = "dart_event"))]
mod util;