- add: character and world proto stubs
This commit is contained in:
17
proto/world.proto
Normal file
17
proto/world.proto
Normal file
@@ -0,0 +1,17 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package character;
|
||||
|
||||
service CharacterService {
|
||||
rpc GetCharacter(CharacterRequest) returns (CharacterResponse);
|
||||
}
|
||||
|
||||
message CharacterRequest {
|
||||
string token = 1;
|
||||
string user_id = 2;
|
||||
string char_id = 3;
|
||||
}
|
||||
|
||||
message CharacterResponse {
|
||||
int32 count = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user