2023-01-16 19:46:04 -08:00

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)
}