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

8 lines
174 B
Go

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