syntax = "proto3"; package matchmaking.v1; import "google/api/annotations.proto"; option go_package = "matchmaking-system/api/matchmaking/v1;v1"; service Backend { // UpdateBotUsersByIsReal 更新用户KYC认证 rpc UpdateBotUsersByIsReal(BotUsersNullRequest)returns(BotUsersReply){ option (google.api.http) = { post:"/order_backend/update_is_real", body:"*", }; } } message BotUsersReply{ int64 code =1;// 状态码 string data =2;// 返回结果 string message =3;// 返回消息提示 } message BotUsersNullRequest{ }