5 lines
87 B
Rust
5 lines
87 B
Rust
// build.rs
|
|
fn main() {
|
|
tonic_build::compile_protos("proto/api.proto").unwrap();
|
|
}
|