summaryrefslogtreecommitdiff
path: root/newCluster.go
blob: 245638dd94f5156b3e2f310cf61d6b8f4023a54c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
}