Update docker files to build from the folder above to include the proto files.
This commit is contained in:
20
proto/character.proto
Normal file
20
proto/character.proto
Normal 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 {}
|
||||
Reference in New Issue
Block a user