feat(auth): add protobuf definitions for AuthService

This commit is contained in:
hdbg
2026-02-09 15:33:22 +01:00
parent 284f997cbe
commit 7816518977
6 changed files with 207 additions and 9 deletions

View File

@@ -1,4 +1,9 @@
use tonic_prost_build::configure;
fn main() -> Result<(), Box<dyn std::error::Error>> {
// tonic_prost_build::compile_protos("../../protobufs/")?;
configure()
.proto_path("../../../protobufs")
.compile_protos(&["../../../protobufs/auth.proto"], &["../../../protobufs"])
.unwrap();
Ok(())
}