mirror of
https://github.com/chatmail/core.git
synced 2026-09-22 04:58:47 +03:00
8 lines
225 B
Rust
8 lines
225 B
Rust
use deltachat_jsonrpc::api::{write_qt_bindings, write_ts_bindings};
|
|
use std::path::Path;
|
|
|
|
fn main() {
|
|
write_ts_bindings(Path::new("typescript/generated"));
|
|
write_qt_bindings(Path::new("qt/generated"), "deltachat");
|
|
}
|