github.com/mithrandie/csvq@v1.18.1/lib/action/signals_default.go (about)

     1  //go:build !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !windows
     2  
     3  package action
     4  
     5  import (
     6  	"os"
     7  )
     8  
     9  var Signals = []os.Signal{
    10  	os.Interrupt,
    11  }