mirror of
https://github.com/clearlinux/docker.git
synced 2026-09-01 11:15:59 +00:00
14 lines
243 B
Go
14 lines
243 B
Go
// +build !windows
|
|
|
|
package windows
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/daemon/execdriver"
|
|
)
|
|
|
|
func NewDriver(root, initPath string) (execdriver.Driver, error) {
|
|
return nil, fmt.Errorf("Windows driver not supported on non-Windows")
|
|
}
|