mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 00:41:27 -06: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}
|