2014-05-13 17:39:00 -04:00
|
|
|
package common
|
2014-04-06 13:21:22 -04:00
|
|
|
|
2016-12-11 17:37:41 -05:00
|
|
|
// HostIPFinder allows to find the host IP that is available from within
|
2014-05-01 16:58:17 -04:00
|
|
|
// the Parallels virtual machines.
|
2014-04-06 13:21:22 -04:00
|
|
|
type HostIPFinder interface {
|
|
|
|
HostIP() (string, error)
|
|
|
|
}
|