27 lines
382 B
Protocol Buffer
27 lines
382 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package pb;
|
||
|
|
||
|
option go_package = "./;pb";
|
||
|
|
||
|
import "common.proto";
|
||
|
|
||
|
service MopAppletBuildManger {
|
||
|
rpc QueryEncrypted (QueryEncryptedReq) returns (QueryEncryptedRsp) {}
|
||
|
}
|
||
|
|
||
|
//接口一
|
||
|
message QueryEncryptedReq {
|
||
|
string sdkVersion = 1;
|
||
|
}
|
||
|
|
||
|
|
||
|
message QueryEncryptedRsp {
|
||
|
CommonResult result = 1;
|
||
|
|
||
|
message DATA {
|
||
|
bool encrypted = 1;
|
||
|
}
|
||
|
|
||
|
DATA data = 2;
|
||
|
}
|