core-lightning/cln-grpc/build.rs
Christian Decker 4c105d2424 cln-grpc: Generate grpc bindings from proto
This is the easy way, since there's already tooling for this.
2022-02-28 23:25:37 +00:00

4 lines
76 B
Rust

fn main() {
tonic_build::compile_protos("proto/node.proto").unwrap();
}