dotfiles/agent/build.rs

7 lines
143 B
Rust
Raw Normal View History

2023-06-13 13:02:49 +00:00
fn main() {
tonic_build::configure()
2023-06-15 10:55:24 +00:00
.build_client(true)
2023-06-13 13:02:49 +00:00
.compile(&["proto/agent.proto"], &["proto"])
.unwrap();
}