mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-07 18:50:26 +08:00
10 lines
135 B
Protocol Buffer
10 lines
135 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
option go_package = "./pb";
|
||
|
|
|
||
|
|
package pb;
|
||
|
|
|
||
|
|
message Cluster {
|
||
|
|
int64 id = 1;
|
||
|
|
string name = 2;
|
||
|
|
int64 createdAt = 3;
|
||
|
|
}
|