mirror of https://github.com/docker/cli.git
7 lines
140 B
Go
7 lines
140 B
Go
|
//go:build !linux
|
||
|
|
||
|
package userns
|
||
|
|
||
|
// inUserNS is a stub for non-Linux systems. Always returns false.
|
||
|
func inUserNS() bool { return false }
|