mirror of
https://github.com/Walter-Sparrow/lunar-tear.git
synced 2026-07-02 13:53:41 +03:00
20 lines
380 B
Protocol Buffer
20 lines
380 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "lunar-tear/server/gen/proto;proto";
|
|
|
|
import "proto/data.proto";
|
|
|
|
package apb.api.character;
|
|
|
|
service CharacterService {
|
|
rpc Rebirth (RebirthRequest) returns (RebirthResponse);
|
|
}
|
|
|
|
message RebirthRequest {
|
|
int32 characterId = 1;
|
|
int32 rebirthCount = 2;
|
|
}
|
|
|
|
message RebirthResponse {
|
|
map<string, apb.api.data.DiffData> diffUserData = 99;
|
|
} |