Files
Packer-Cn/builder/vmware/common/host_ip.go
T

8 lines
174 B
Go
Raw Normal View History

package common
2013-06-05 20:40:39 -07:00
// Interface to help find the host IP that is available from within
// the VMware virtual machines.
type HostIPFinder interface {
HostIP() (string, error)
}