AppFlowy/frontend/appflowy_web/wasm-libs/af-user/build.rs

18 lines
321 B
Rust
Raw Normal View History

use flowy_codegen::Project;
fn main() {
flowy_codegen::protobuf_file::ts_gen(
env!("CARGO_PKG_NAME"),
"user",
Project::Web {
relative_path: "../../../".to_string(),
},
);
flowy_codegen::ts_event::gen(
"user",
Project::Web {
relative_path: "../../../".to_string(),
},
);
}