| 10 | ) |
| 11 | |
| 12 | type etcdWatcher struct { |
| 13 | stop chan bool |
| 14 | w clientv3.WatchChan |
| 15 | client *clientv3.Client |
| 16 | timeout time.Duration |
| 17 | } |
| 18 | |
| 19 | func newEtcdWatcher(r *etcdRegistry, timeout time.Duration, opts ...registry.WatchOption) (registry.Watcher, error) { |
| 20 | var wo registry.WatchOptions |
nothing calls this directly
no outgoing calls
no test coverage detected