增加认证节点管理

This commit is contained in:
刘祥超
2021-04-13 21:23:31 +08:00
parent fe0ca9ad93
commit 9d3c92b2fa
4 changed files with 1827 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
message AuthorityNode {
int64 id = 1;
bool isOn = 2;
string uniqueId = 3;
string secret = 4;
string name = 5;
string description = 6;
bytes statusJSON = 7;
}