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