dotfiles/agent/build.rs
2023-06-23 14:39:11 +03:00

6 lines
149 B
Rust

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