mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-04-25 07:07:32 -04:00
9 lines
228 B
Rust
9 lines
228 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");
|
|
|
|
#[cfg(feature = "dart")]
|
|
code_gen::dart_event::gen(crate_name);
|
|
}
|