Update docker files to build from the folder above to include the proto files.

This commit is contained in:
iamBadgers
2025-06-07 23:30:26 -07:00
parent a2a51754f7
commit a3ecb70abe
8 changed files with 914 additions and 353 deletions

20
proto/character.proto Normal file
View File

@@ -0,0 +1,20 @@
syntax = "proto3";
service CharacterManager {
rpc createCharacter(CreateCharacterRequest) returns (CreateCharacterResponse);
rpc getCharacter(GetCharacterRequest) returns (GetCharacterResponse);
}
message Character {
string PlayerName = 1;
string CharacterName = 2;
repeated string CharacterAlias = 3;
}
message CreateCharacterRequest {}
message CreateCharacterResponse {}
message GetCharacterRequest {}
message GetCharacterResponse {}