fixing errors, slowly moving forwards

This commit is contained in:
filipriec
2025-02-21 19:06:01 +01:00
parent e4c14e5a1e
commit 4b10b0b213
9 changed files with 22 additions and 11 deletions

View File

@@ -2,8 +2,9 @@
fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::configure()
.build_server(true)
.file_descriptor_set_path("src/proto/descriptor.bin")
.compile_protos(
&["proto/api.proto", "proto/uctovnictvo.proto"], // Include both proto files
&["proto/api.proto", "proto/uctovnictvo.proto"],
&["proto"],
)?;
Ok(())