8 lines
182 B
Go
Raw Normal View History

package common
2016-12-12 00:37:41 +02:00
// HostIPFinder allows to find the host IP that is available from within
2014-05-02 00:58:17 +04:00
// the Parallels virtual machines.
type HostIPFinder interface {
HostIP() (string, error)
}