AppFlowy/frontend/rust-lib/flowy-net/build.rs

8 lines
198 B
Rust
Raw Normal View History

2022-02-15 13:27:00 +00:00
use lib_infra::code_gen;
fn main() {
2022-02-16 02:00:31 +00:00
let crate_name = env!("CARGO_PKG_NAME");
code_gen::protobuf_file::gen(crate_name, "./src/protobuf/proto");
code_gen::dart_event::gen(crate_name);
}