Files
skopeo/vendor/github.com/Microsoft/hcsshim/hnsglobals.go
2023-04-11 17:35:08 +00:00

19 lines
281 B
Go

//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()
}