mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-24 10:21:20 -05:00
7 lines
182 B
Go
7 lines
182 B
Go
package common
|
|
|
|
// HostIPFinder allows to find the host IP that is available from within
|
|
// the Parallels virtual machines.
|
|
type HostIPFinder interface {
|
|
HostIP() (string, error)
|
|
}
|