Migrate server to new crate

This commit is contained in:
Jett Chen 2024-11-22 11:21:02 +08:00
parent b806b28a6e
commit 321d36b743
18 changed files with 167 additions and 63 deletions

4
server/build.rs Normal file
View file

@ -0,0 +1,4 @@
fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::configure().compile_protos(&["../proto/burrowweb.proto"], &["../proto"])?;
Ok(())
}