summaryrefslogtreecommitdiff
path: root/newCluster.go
diff options
context:
space:
mode:
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
+}