mirror of
https://github.com/Walter-Sparrow/lunar-tear.git
synced 2026-07-02 05:43:41 +03:00
Initial commit
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option go_package = "lunar-tear/server/gen/proto;proto";
|
||||
|
||||
import "proto/mission.proto";
|
||||
import "proto/data.proto";
|
||||
|
||||
package apb.api.banner;
|
||||
|
||||
service BannerService {
|
||||
rpc GetMamaBanner (GetMamaBannerRequest) returns (GetMamaBannerResponse);
|
||||
}
|
||||
|
||||
message GetMamaBannerRequest {
|
||||
apb.api.mission.CageMeasurableValues cageMeasurableValues = 50;
|
||||
}
|
||||
|
||||
message GetMamaBannerResponse {
|
||||
repeated GachaBanner termLimitedGacha = 2;
|
||||
GachaBanner latestChapterGacha = 3;
|
||||
bool isExistUnreadPop = 4;
|
||||
map<string, apb.api.data.DiffData> diffUserData = 99;
|
||||
}
|
||||
|
||||
message GachaBanner {
|
||||
int32 gachaLabelType = 1;
|
||||
string gachaAssetName = 2;
|
||||
int32 gachaId = 3;
|
||||
}
|
||||
Reference in New Issue
Block a user