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

8 lines
171 B
Go
Raw Normal View History

2013-12-24 00:58:41 -05:00
package iso
// Interface to help find the host IP that is available from within
// the VMware virtual machines.
type HostIPFinder interface {
HostIP() (string, error)
}