AppFlowy/frontend/appflowy_web/wasm-libs/af-user/build.rs
Nathan.fooo fda70ff560
feat: folder web (#4580)
* chore: folder wasm

* chore: folder wasm

* chore: resolve deps

* chore: fix trait

* chore: try localset

* chore: fix

* chore: fix

* chore: fix

* chore: async init sdk

* chore: fix test

* chore: fix test
2024-02-04 05:50:23 +08:00

18 lines
321 B
Rust

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(),
},
);
}