This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeCommon/pkg/rpc/protos/models/model_http_cache_policy.proto
T

11 lines
222 B
Protocol Buffer

syntax = "proto3";
option go_package = "./pb";
package pb;
message HTTPCachePolicy {
int64 id = 1; // ID
string name = 2; // 名称
bool isOn = 3; // 是否启用
bytes maxBytesJSON = 4; // 内容最大尺寸配置
}