raas-types/build.rs

18 lines
343 B
Rust
Raw Permalink Normal View History

2024-05-26 18:57:29 +00:00
use std::io::Result;
fn main() -> Result<()> {
2024-06-19 19:58:45 +00:00
tonic_build::configure()
.compile(
2024-05-26 18:57:29 +00:00
&[
"src/ping.proto",
"src/register.proto",
"src/roll.proto",
"src/cmd.proto",
"src/resp.proto",
2024-06-19 19:58:45 +00:00
"src/service.proto",
2024-05-26 18:57:29 +00:00
],
&["src/"],
)?;
Ok(())
}