packer/builder/vmware/common/host_ip.go
2014-05-12 21:19:24 -07:00

7 lines
174 B
Go

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