mirror of
https://github.com/Walter-Sparrow/lunar-tear.git
synced 2026-07-02 05:43:41 +03:00
17 lines
444 B
Protocol Buffer
17 lines
444 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "lunar-tear/server/gen/proto;proto";
|
|
|
|
import "google/protobuf/empty.proto";
|
|
import "proto/data.proto";
|
|
|
|
package apb.api.characterviewer;
|
|
|
|
service CharacterViewerService {
|
|
rpc CharacterViewerTop (google.protobuf.Empty) returns (CharacterViewerTopResponse);
|
|
}
|
|
|
|
message CharacterViewerTopResponse {
|
|
repeated int32 releaseCharacterViewerFieldId = 1;
|
|
map<string, apb.api.data.DiffData> diffUserData = 99;
|
|
} |