mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-09 00:16:46 +00:00
* Updates containerd to v1.7.0 and new binary for 32-bit Arm OSes. * Updates Go dependencies - openfaas and external Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
19 lines
281 B
Go
Generated
19 lines
281 B
Go
Generated
//go:build windows
|
|
|
|
package hcsshim
|
|
|
|
import (
|
|
"github.com/Microsoft/hcsshim/internal/hns"
|
|
)
|
|
|
|
type HNSGlobals = hns.HNSGlobals
|
|
type HNSVersion = hns.HNSVersion
|
|
|
|
var (
|
|
HNSVersion1803 = hns.HNSVersion1803
|
|
)
|
|
|
|
func GetHNSGlobals() (*HNSGlobals, error) {
|
|
return hns.GetHNSGlobals()
|
|
}
|