summaryrefslogtreecommitdiff
path: root/newCluster.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-31 13:07:24 -0500
committerJeff Carr <[email protected]>2024-10-31 13:07:24 -0500
commit10793e365d594e98bbc8e04251cfbc6b6b3ddbea (patch)
tree94b5a6c8ec1639dd2867dd42e51c4ed732576e35 /newCluster.go
parentf4cb9e27ce6d963d6fa613ab8131945e833443ce (diff)
seems to compile
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'newCluster.go')
-rw-r--r--newCluster.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/newCluster.go b/newCluster.go
new file mode 100644
index 0000000..245638d
--- /dev/null
+++ b/newCluster.go
@@ -0,0 +1,19 @@
+package virtbuf
+
+import (
+ sync "sync"
+
+ durationpb "google.golang.org/protobuf/types/known/durationpb"
+ "google.golang.org/protobuf/types/known/timestamppb"
+)
+
+type NewCluster struct {
+ sync.RWMutex
+
+ Dirs []string
+ d *Droplets
+ h *Hypervisors
+ e *Events
+ Unstable *timestamppb.Timestamp
+ UnstableTimeout *durationpb.Duration
+}