Files
chatmail-core/deltachat-jsonrpc-bindings/build.rs
d2weber 187c5f4949 feat: generate jsonrpc headers at build time (#8350)
Discussion in https://github.com/chatmail/yerpc/issues/77. The necessary
yerpc changes for this PR are in
https://github.com/chatmail/yerpc/pull/78

This is also a preparation for #8330
2026-09-09 16:09:00 +02:00

7 lines
141 B
Rust

use deltachat_jsonrpc::api::write_ts_bindings;
use std::path::Path;
fn main() {
write_ts_bindings(Path::new("typescript/generated"));
}