mirror of
https://github.com/Walter-Sparrow/lunar-tear.git
synced 2026-07-02 13:53:41 +03:00
19 lines
409 B
Protocol Buffer
19 lines
409 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "lunar-tear/server/gen/proto;proto";
|
|
|
|
import "proto/data.proto";
|
|
|
|
package apb.api.characterboard;
|
|
|
|
service CharacterBoardService {
|
|
rpc ReleasePanel (ReleasePanelRequest) returns (ReleasePanelResponse);
|
|
}
|
|
|
|
message ReleasePanelRequest {
|
|
repeated int32 characterBoardPanelId = 1;
|
|
}
|
|
|
|
message ReleasePanelResponse {
|
|
map<string, apb.api.data.DiffData> diffUserData = 99;
|
|
} |