virtpb/helpers.go

18 lines
321 B
Go

package virtpb
// functions to import and export the protobuf
// data to and from config files
func InitCluster() *OldCluster {
var c *OldCluster
c = new(OldCluster)
c.d = new(Droplets)
c.H = new(Hypervisors)
c.e = new(Events)
return c
}
func (c *OldCluster) DropletsAll() *DropletIterator {
return c.d.All()
}