mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-15 03:16:46 +00:00
Upgrades containerd, and switches to the official 64-bit ARM binary. Continues to use my binary for 32-bit arm hosts. CNI upgraded to v0.9.1 Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
12 lines
246 B
Go
Generated
12 lines
246 B
Go
Generated
//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{}
|