mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-19 18:07:45 +08:00
13 lines
168 B
Go
13 lines
168 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package appcontext
|
|
|
|
import (
|
|
"os"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
var terminationSignals = []os.Signal{unix.SIGTERM, unix.SIGINT}
|