阶段性提交

This commit is contained in:
刘祥超
2021-06-17 21:18:05 +08:00
parent 04e567b6d8
commit 0226b4aa98
15 changed files with 1590 additions and 130 deletions

View File

@@ -0,0 +1,13 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
// 服务认证策略
message HTTPAuthPolicy {
int64 id = 1;
bool isOn = 2;
string name = 3;
string type = 4;
bytes paramsJSON = 5;
}