mirror of
https://github.com/hashicorp/packer.git
synced 2026-03-16 15:42:15 -04:00
7 lines
177 B
Go
7 lines
177 B
Go
package common
|
|
|
|
// Interface to help find the host IP that is available from within
|
|
// the Parallels virtual machines.
|
|
type HostIPFinder interface {
|
|
HostIP() (string, error)
|
|
}
|