diff options
| author | Jeff Carr <[email protected]> | 2025-04-12 11:28:05 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-04-12 11:28:05 -0500 |
| commit | 63148556af54bbcb73753a122e7e9705e9ecf629 (patch) | |
| tree | dfb84b01ee27f8157aca33c542f95e0ec3a672c9 /cluster.proto | |
| parent | a510dd64743431f8f33c31f020842360b94c3597 (diff) | |
add Name and allow multiple URLs
Diffstat (limited to 'cluster.proto')
| -rw-r--r-- | cluster.proto | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cluster.proto b/cluster.proto index f81b89b..6c09642 100644 --- a/cluster.proto +++ b/cluster.proto @@ -5,8 +5,9 @@ import "google/protobuf/timestamp.proto"; message Cluster { string uuid = 1; // `autogenpb:unique` - string URL = 2; // `autogenpb:unique` - google.protobuf.Timestamp ctime = 3; // when the cluster was created + string name = 2; + repeated string URL = 3; + google.protobuf.Timestamp ctime = 4; // when the cluster was created } message Clusters { // `autogenpb:marshal` |
