Reviewed-on: #15
@ -9,8 +9,8 @@ import (
// A Machine is a machine on a Zone
type Machine struct {
zone *Zone
logger
logger `toml:"-" json:"-" yaml:"-"`
ID int `toml:"id"`
Name string `toml:"-" json:"-" yaml:"-"`
@ -87,8 +87,8 @@ func FilterMachines(m MachineIterator, cond func(*Machine) bool) (Machines, int)
// Zone represents one zone in a cluster
type Zone struct {
zones *Zones
Name string `toml:"name"`