mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-25 16:31:10 -06:00
11 lines
128 B
Go
11 lines
128 B
Go
// +build windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
var ignoreSignals = []os.Signal{os.Interrupt}
|
|
var forwardSignals []os.Signal
|