This commit is contained in:
2024-10-19 13:15:09 -07:00
commit 17b9e50f1f
12 changed files with 1623 additions and 0 deletions

5
server/build.rs Normal file
View File

@@ -0,0 +1,5 @@
fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::compile_protos("proto/core.proto")?;
Ok(())
}