mirror of https://github.com/docker/cli.git
9 lines
132 B
Go
9 lines
132 B
Go
|
package sysx
|
||
|
|
||
|
import (
|
||
|
"syscall"
|
||
|
)
|
||
|
|
||
|
// This should actually be a set that contains ENOENT and EPERM
|
||
|
const ENODATA = syscall.ENOENT
|