8 lines
171 B
Go
8 lines
171 B
Go
|
package iso
|
||
|
|
||
|
// Interface to help find the host IP that is available from within
|
||
|
// the VMware virtual machines.
|
||
|
type HostIPFinder interface {
|
||
|
HostIP() (string, error)
|
||
|
}
|