1 //go:build windows 2 3 package hcsshim 4 5 import ( 6 "github.com/Microsoft/hcsshim/internal/hns" 7 ) 8 9 type HNSGlobals = hns.HNSGlobals 10 type HNSVersion = hns.HNSVersion 11 12 var ( 13 HNSVersion1803 = hns.HNSVersion1803 14 ) 15 16 func GetHNSGlobals() (*HNSGlobals, error) { 17 return hns.GetHNSGlobals() 18 } 19