13 lines
168 B
Go
13 lines
168 B
Go
// +build darwin linux
|
|
|
|
package main
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func init() {
|
|
sigExit = append(sigExit, syscall.SIGTERM)
|
|
sigIgnore = append(sigIgnore, syscall.SIGHUP)
|
|
}
|