github.com/technosophos/deis@v1.7.1-0.20150915173815-f9005256004b/mesos/pkg/types/current-boot.go (about) 1 package types 2 3 import ( 4 "net" 5 "time" 6 7 "github.com/deis/deis/mesos/pkg/etcd" 8 ) 9 10 // CurrentBoot information about the boot 11 // process related to the component 12 type CurrentBoot struct { 13 ConfdNodes []string 14 EtcdClient *etcd.Client 15 EtcdPath string 16 EtcdPort int 17 EtcdPeers string 18 EtcdURL []string 19 Host net.IP 20 Port int 21 Timeout time.Duration 22 TTL time.Duration 23 }