AppFlowy/frontend/rust-lib/flowy-user/build.rs
2022-02-16 11:05:43 +08:00

8 lines
198 B
Rust

use lib_infra::code_gen;
fn main() {
let crate_name = env!("CARGO_PKG_NAME");
code_gen::protobuf_file::gen(crate_name, "./src/protobuf/proto");
code_gen::dart_event::gen(crate_name);
}