实现点击访问日志显示详情窗口

This commit is contained in:
GoEdgeLab
2020-11-02 21:15:48 +08:00
parent fe7e963e60
commit 07abf24386
10 changed files with 1265 additions and 280 deletions

View File

@@ -0,0 +1,12 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
message HTTPFirewallRuleSet {
int64 id = 1;
string name = 2;
bool isOn = 3;
string description = 4;
string code = 5;
}