Files
tonic/tests/wellknown-compiled/build.rs
T

7 lines
156 B
Rust

fn main() {
tonic_build::configure()
.compile_well_known_types(true)
.compile(&["proto/google.proto"], &["proto"])
.unwrap();
}