- update: character service grpc protocol additions for create, delete and get character with stubs

This commit is contained in:
2025-01-05 17:16:02 -05:00
parent 7417d2d6dd
commit b01432501c
3 changed files with 33 additions and 3 deletions

View File

@@ -11,6 +11,6 @@ fn main() {
tonic_build::configure()
.build_server(false) // Generate gRPC client code
.compile_well_known_types(true)
.compile_protos(&["../proto/user_db_api.proto", "../proto/auth.proto"], &["../proto"])
.compile_protos(&["../proto/user_db_api.proto", "../proto/character_db_api.proto", "../proto/auth.proto"], &["../proto"])
.unwrap_or_else(|e| panic!("Failed to compile protos {:?}", e));
}