summaryrefslogtreecommitdiff
path: root/build.rs
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-06-18 15:31:26 -0600
committermo khan <mo@mokhan.ca>2025-06-18 15:31:26 -0600
commitd78086a5e376fc0d9ee64a1dd8e4113d66dcafd3 (patch)
tree40d749119aee2106e56173ceeddd63fffc6c574b /build.rs
parentb7d47b2a6c00925f6ae9640700fcda0d888b0486 (diff)
feat: create an grpc server
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/build.rs b/build.rs
new file mode 100644
index 0000000..7c661fe
--- /dev/null
+++ b/build.rs
@@ -0,0 +1,4 @@
+fn main() -> Result<(), Box<dyn std::error::Error>> {
+ tonic_build::compile_protos("proto/helloworld.proto")?;
+ Ok(())
+}