21 lines
403 B
Protocol Buffer
21 lines
403 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option optimize_for = LITE_RUNTIME;
|
|
option go_package = "pkg/protomodel";
|
|
|
|
package protomodel;
|
|
|
|
message Config {
|
|
bool hook = 1;
|
|
bool emulator = 2;
|
|
bool repack = 3;
|
|
bool debug = 4;
|
|
bool root = 5;
|
|
bytes cert_rsa = 6;
|
|
string server_url = 7;
|
|
int32 report_type = 8;
|
|
bytes obfuscator = 9;
|
|
string remote_config_url = 10;
|
|
string domain_id = 11;
|
|
}
|