[用户节点]可以管理用户节点

This commit is contained in:
刘祥超
2020-12-14 21:25:19 +08:00
parent 530ed99e86
commit af8dd224a4
8 changed files with 2056 additions and 50 deletions

View File

@@ -0,0 +1,17 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
message UserNode {
int64 id = 1;
bool isOn = 2;
string uniqueId = 3;
string secret = 4;
string name = 5;
string description = 6;
bytes httpJSON = 7;
bytes httpsJSON = 8;
bytes accessAddrsJSON = 9;
repeated string accessAddrs = 10;
}