crabidy/crabidy-core/build.rs

6 lines
194 B
Rust

fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::compile_protos("crabidy/v1/crabidy.proto")?;
tonic_build::compile_protos("crabidy/proto/crabidy.proto")?;
Ok(())
}