//go:build !windows package cli import ( "os" "syscall" ) var interruptSignals = []os.Signal{ os.Interrupt, syscall.SIGTERM, syscall.SIGHUP, }