lesavka/common/build.rs

10 lines
200 B
Rust
Raw Normal View History

2025-06-21 05:21:57 -05:00
2025-06-01 13:31:22 -05:00
fn main() {
2025-06-21 05:21:57 -05:00
tonic_build::configure()
.build_server(true)
.build_client(true)
.compile_protos(&["proto/navka.proto"], &["proto"])
.expect("prost build failed");
2025-06-01 13:31:22 -05:00
}