| 25 | ) |
| 26 | |
| 27 | type ng struct { |
| 28 | nodes []string |
| 29 | registry *plugin.Registry |
| 30 | etcdKey string |
| 31 | client *etcd.Client |
| 32 | context context.Context |
| 33 | cancelFunc context.CancelFunc |
| 34 | logLevel log.Level |
| 35 | options etcdng.Options |
| 36 | requireQuorum bool |
| 37 | } |
| 38 | |
| 39 | var ( |
| 40 | frontendIdRegex = regexp.MustCompile("/frontends/([^/]+)(?:/frontend)?$") |
nothing calls this directly
no outgoing calls
no test coverage detected