mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-19 09:57:45 +08:00
12 lines
246 B
Go
12 lines
246 B
Go
//go:build !linux && !darwin && !freebsd && !windows
|
|
// +build !linux,!darwin,!freebsd,!windows
|
|
|
|
package signal
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
// SignalMap is an empty map of signals for unsupported platform.
|
|
var SignalMap = map[string]syscall.Signal{}
|