2015-04-27 18:20:44 -04:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package execdrivers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/docker/docker/daemon/execdriver"
|
|
|
|
"github.com/docker/docker/daemon/execdriver/windows"
|
|
|
|
"github.com/docker/docker/pkg/sysinfo"
|
|
|
|
)
|
|
|
|
|
2015-07-27 20:43:22 -04:00
|
|
|
// NewDriver returns a new execdriver.Driver from the given name configured with the provided options.
|
2015-11-30 04:04:13 -05:00
|
|
|
func NewDriver(options []string, root, libPath string, sysInfo *sysinfo.SysInfo) (execdriver.Driver, error) {
|
|
|
|
return windows.NewDriver(root, options)
|
2015-04-27 18:20:44 -04:00
|
|
|
}
|