10 lines
233 B
Go
10 lines
233 B
Go
// +build !darwin
|
|
|
|
package vmwarefusion
|
|
|
|
import "github.com/docker/machine/libmachine/drivers"
|
|
|
|
func NewDriver(hostName, storePath string) drivers.Driver {
|
|
return drivers.NewDriverNotSupported("vmwarefusion", hostName, storePath)
|
|
}
|