8 lines
191 B
Rust
Raw Normal View History

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