dotfiles/agent/build.rs
2023-06-15 13:55:24 +03:00

6 lines
143 B
Rust

fn main() {
tonic_build::configure()
.build_client(true)
.compile(&["proto/agent.proto"], &["proto"])
.unwrap();
}