Etcd implements the Storage interface
| 28 | |
| 29 | // Etcd implements the Storage interface |
| 30 | type Etcd struct { |
| 31 | client etcd.KeysAPI |
| 32 | log kite.Logger |
| 33 | } |
| 34 | |
| 35 | func NewEtcd(machines []string, log kite.Logger) *Etcd { |
| 36 | if machines == nil || len(machines) == 0 { |
nothing calls this directly
no outgoing calls
no test coverage detected