mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
1b726b29b2
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
14 lines
448 B
Go
14 lines
448 B
Go
// +build windows
|
|
|
|
package execdrivers
|
|
|
|
import (
|
|
"github.com/docker/docker/daemon/execdriver"
|
|
"github.com/docker/docker/daemon/execdriver/windows"
|
|
"github.com/docker/docker/pkg/sysinfo"
|
|
)
|
|
|
|
// NewDriver returns a new execdriver.Driver from the given name configured with the provided options.
|
|
func NewDriver(options []string, root, libPath string, sysInfo *sysinfo.SysInfo) (execdriver.Driver, error) {
|
|
return windows.NewDriver(root, options)
|
|
}
|