7 lines
156 B
Rust
7 lines
156 B
Rust
fn main() {
|
|
tonic_build::configure()
|
|
.compile_well_known_types(true)
|
|
.compile(&["proto/google.proto"], &["proto"])
|
|
.unwrap();
|
|
}
|