mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 23:20:26 +08:00
11 lines
152 B
Protocol Buffer
11 lines
152 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
message NodeLogin {
|
|
int64 id = 1;
|
|
string name = 2;
|
|
string type = 3;
|
|
bytes params = 4;
|
|
} |