packer-cn/builder/parallels/common/host_ip.go

8 lines
177 B
Go
Raw Normal View History

package common
// Interface to help find the host IP that is available from within
2014-05-01 16:58:17 -04:00
// the Parallels virtual machines.
type HostIPFinder interface {
HostIP() (string, error)
}