feat: return rows and fields

This commit is contained in:
appflowy
2022-03-05 17:52:25 +08:00
parent 8029f1035d
commit 11ceb96f65
23 changed files with 915 additions and 155 deletions

View File

@ -3,5 +3,7 @@ use lib_infra::code_gen;
fn main() {
let crate_name = env!("CARGO_PKG_NAME");
code_gen::protobuf_file::gen(crate_name, "./src/protobuf/proto");
#[cfg(feature = "dart")]
code_gen::dart_event::gen(crate_name);
}