2016-12-17 00:37:03 +02:00

8 lines
182 B
Go

package common
// HostIPFinder allows to find the host IP that is available from within
// the Parallels virtual machines.
type HostIPFinder interface {
HostIP() (string, error)
}