(ctx context.Context, deviceID protocol.DeviceID)
| 17 | // A Finder provides lookup services of some kind. |
| 18 | type Finder interface { |
| 19 | Lookup(ctx context.Context, deviceID protocol.DeviceID) (address []string, err error) |
| 20 | Error() error |
| 21 | String() string |
| 22 | Cache() map[protocol.DeviceID]CacheEntry |
no outgoing calls