mirror of https://github.com/docker/cli.git
13 lines
145 B
Go
13 lines
145 B
Go
|
// +build !windows
|
||
|
|
||
|
package containerized
|
||
|
|
||
|
import (
|
||
|
"golang.org/x/sys/unix"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
// sigTERM maps to unix.SIGTERM
|
||
|
sigTERM = unix.SIGTERM
|
||
|
)
|