mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-23 18:04:11 -05:00
7 lines
174 B
Go
7 lines
174 B
Go
package vmware
|
|
|
|
// Interface to help find the host IP that is available from within
|
|
// the VMware virtual machines.
|
|
type HostIPFinder interface {
|
|
HostIP() (string, error)
|
|
}
|