mirror of https://github.com/docker/cli.git
10 lines
84 B
Go
10 lines
84 B
Go
|
// +build windows
|
||
|
|
||
|
package engine
|
||
|
|
||
|
var (
|
||
|
isRoot = func() bool {
|
||
|
return true
|
||
|
}
|
||
|
)
|