type Leases interface {
// ListLeases retrieves a list of the current master IPs ListLeases() ([]string, error)
// UpdateLease adds or refreshes a master's lease UpdateLease(ip string) error
}
Leases is an interface which assists in managing the set of active masters