diff --git a/build.rs b/build.rs new file mode 100644 index 0000000..bd695a9 --- /dev/null +++ b/build.rs @@ -0,0 +1,4 @@ +fn main() -> Result<(), Box> { + tonic_build::compile_protos("proto/remini.proto")?; + Ok(()) +}