mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 15:00:27 +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;
|
|
} |