Files
linuxkit/pkg/init/vendor/github.com/Microsoft/hcsshim/hnsglobals.go
2024-07-16 10:55:01 +03:00

19 lines
281 B
Go
Vendored

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