mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-21 10:47:34 -05: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}
|