Files
tonic/tonic-examples/build.rs
T
2019-08-15 17:50:25 -04:00

8 lines
147 B
Rust

fn main() {
tonic_build::compile_protos(
&["proto/helloworld/helloworld.proto"],
&["proto/helloworld"],
)
.unwrap();
}