8 lines
198 B
Rust
Raw Normal View History

2022-02-15 21:27:00 +08:00
use lib_infra::code_gen;
fn main() {
2022-02-16 10:00:31 +08: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);
}