mirror of https://github.com/docker/cli.git
10 lines
104 B
Go
10 lines
104 B
Go
|
// +build !linux
|
||
|
|
||
|
package container
|
||
|
|
||
|
import "os"
|
||
|
|
||
|
func isRuntimeSig(_ os.Signal) bool {
|
||
|
return false
|
||
|
}
|