mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2026-01-09 14:15:48 +08:00
13 lines
219 B
Protocol Buffer
13 lines
219 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
message HTTPWeb {
|
|
int64 id = 1;
|
|
bool isOn = 2;
|
|
string root = 3;
|
|
string charset = 4;
|
|
int64 requestHeaderPolicyId = 5;
|
|
int64 responseHeaderPolicyId = 6;
|
|
} |