2014-04-06 13:21:22 -04:00
|
|
|
package iso
|
|
|
|
|
|
|
|
// Interface to help 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)
|
|
|
|
}
|