k3s/vendor/github.com/Microsoft/hcsshim/hnsglobals.go

17 lines
261 B
Go
Raw Normal View History

2019-01-12 04:58:27 +00:00
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()
}