2014-05-13 23:39:00 +02:00
|
|
|
package common
|
2014-04-06 19:21:22 +02:00
|
|
|
|
|
|
|
// Interface to help find the host IP that is available from within
|
2014-05-02 00:58:17 +04:00
|
|
|
// the Parallels virtual machines.
|
2014-04-06 19:21:22 +02:00
|
|
|
type HostIPFinder interface {
|
|
|
|
HostIP() (string, error)
|
|
|
|
}
|