mirror of https://github.com/docker/cli.git
8 lines
187 B
Go
8 lines
187 B
Go
|
package signals
|
||
|
|
||
|
import "os"
|
||
|
|
||
|
// TerminationSignals represents the list of signals we
|
||
|
// want to special-case handle, on this platform.
|
||
|
var TerminationSignals = []os.Signal{os.Interrupt}
|