| 123 | } |
| 124 | |
| 125 | type slowDiscovery struct { |
| 126 | delay time.Duration |
| 127 | started chan struct{} |
| 128 | } |
| 129 | |
| 130 | func (f *slowDiscovery) Lookup(_ context.Context, _ protocol.DeviceID) (addresses []string, err error) { |
| 131 | close(f.started) |
nothing calls this directly
no outgoing calls
no test coverage detected