mirror of
https://github.com/Walter-Sparrow/lunar-tear.git
synced 2026-07-02 05:43:41 +03:00
20 lines
455 B
Protocol Buffer
20 lines
455 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "lunar-tear/server/gen/proto;proto";
|
|
|
|
import "proto/data.proto";
|
|
|
|
package apb.api.contentsstory;
|
|
|
|
service ContentsStoryService {
|
|
rpc RegisterPlayed (ContentsStoryRegisterPlayedRequest) returns (ContentsStoryRegisterPlayedResponse);
|
|
}
|
|
|
|
message ContentsStoryRegisterPlayedRequest {
|
|
int32 contentsStoryId = 1;
|
|
}
|
|
|
|
message ContentsStoryRegisterPlayedResponse {
|
|
map<string, apb.api.data.DiffData> diffUserData = 99;
|
|
}
|