mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-10 01:10:27 +08:00
14 lines
225 B
Protocol Buffer
14 lines
225 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
option go_package = "./pb";
|
||
|
|
|
||
|
|
package pb;
|
||
|
|
|
||
|
|
import "model_size_capacity.proto";
|
||
|
|
|
||
|
|
message HTTPGzip {
|
||
|
|
int64 id = 1;
|
||
|
|
bool isOn = 2;
|
||
|
|
int32 level = 3;
|
||
|
|
SizeCapacity minLength = 4;
|
||
|
|
SizeCapacity maxLength = 5;
|
||
|
|
}
|