dotfiles/agent/build.rs

6 lines
115 B
Rust
Raw Normal View History

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