6 lines
172 B
Rust
6 lines
172 B
Rust
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
println!("cargo:rerun-if-changed=migrations");
|
|
tonic_build::compile_protos("proto/core.proto")?;
|
|
Ok(())
|
|
}
|