rust-nex/build.rs

10 lines
228 B
Rust
Raw Permalink Normal View History

fn main(){
tonic_build::configure()
.build_server(false)
.compile_protos(
&["grpc-protobufs/account/account_service.proto"],
&["grpc-protobufs/account"]
)
.unwrap();
}