planetwars.dev/planetwars-client/build.rs
2022-06-01 20:19:13 +02:00

10 lines
243 B
Rust

extern crate tonic_build;
fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::configure()
.build_server(false)
.build_client(true)
.compile(&["../proto/bot_api.proto"], &["../proto"])?;
Ok(())
}