实现访问日志配置

This commit is contained in:
刘祥超
2020-09-20 11:56:22 +08:00
parent 6a93d17e72
commit ec3dd3a1c8
15 changed files with 1203 additions and 144 deletions

View File

@@ -0,0 +1,13 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
message HTTPAccessLogPolicy {
int64 id = 1;
string name = 2;
bool isOn = 3;
string type = 4;
bytes optionsJSON = 5;
bytes condsJSON = 6;
}