dotfiles/agent/build.rs

7 lines
149 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-23 11:39:11 +00:00
.compile(&["../proto/agent.proto"], &["../proto"])
2023-06-13 13:02:49 +00:00
.unwrap();
}