mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-21 07:21:40 -04:00
8 lines
174 B
Go
8 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)
|
|
}
|