mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-22 06:20:25 +08:00
15 lines
239 B
Protocol Buffer
15 lines
239 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
option go_package = "./pb";
|
||
|
|
|
||
|
|
package pb;
|
||
|
|
|
||
|
|
message NodeGrant {
|
||
|
|
int64 id = 1;
|
||
|
|
string name = 2;
|
||
|
|
string method = 3;
|
||
|
|
string password = 4;
|
||
|
|
bool su = 5;
|
||
|
|
string privateKey = 6;
|
||
|
|
string description = 7;
|
||
|
|
int64 nodeId = 8;
|
||
|
|
}
|