mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-12 07:01:03 -04:00
12 lines
159 B
Go
12 lines
159 B
Go
// +build !windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
var ignoreSignals = []os.Signal{os.Interrupt}
|
|
var forwardSignals = []os.Signal{syscall.SIGTERM}
|