summaryrefslogtreecommitdiff
path: root/build.rs
diff options
context:
space:
mode:
authorStelStelox <stelstelox@arsland.ru>2026-04-21 17:30:34 +0300
committerStelStelox <stelstelox@arsland.ru>2026-04-21 17:30:34 +0300
commitff38d1bb4855ea4d34c9dafd60e2a7a2b8df13f6 (patch)
tree51c16dc866fd501a44cd0ce569fd4843d0921fdd /build.rs
parent38fb6b816d80ea44575d5b4cbc54219c6465c112 (diff)
add dependenciesHEADmain
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..43e2dc4
--- /dev/null
+++ b/build.rs
@@ -0,0 +1,4 @@
+fn main() -> Result<(), Box<dyn std::error::Error>> {
+ tonic_prost_build::compile_protos("proto/auth.proto")?;
+ Ok(())
+}