summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-26 07:28:19 -0500
committerJeff Carr <[email protected]>2024-10-26 07:28:19 -0500
commit9020957ee73741a3f120ff7fd9f9afcb517e02ed (patch)
tree44b280079987be31584218f6d684941879998454 /structs.go
parent0dc393896c640d220a0825b56cc991e91963b7f9 (diff)
new config files
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go9
1 files changed, 4 insertions, 5 deletions
diff --git a/structs.go b/structs.go
index c62b422..07803fa 100644
--- a/structs.go
+++ b/structs.go
@@ -21,14 +21,13 @@ func (b *virtigoT) Enable() {
// this app's variables
type virtigoT struct {
- cluster *pb.Cluster // basic cluster settings
- delay time.Duration // how often to poll the hypervisors
- pbdrop *pb.Droplets // the protobuf droplets
- events *pb.Events // cluster events
+ cluster *pb.Cluster // basic cluster settings
+ delay time.Duration // how often to poll the hypervisors
+ // events *pb.Events // cluster events
dmap map[*pb.Droplet]*DropletT // map to the local struct
names []string
hypers []*HyperT
- droplets []*DropletT
+ droplets []*DropletT
killcount int
unstable time.Time // the last time the cluster was incorrect
changed bool