1 //go:build windows 2 3 package hcsshim 4 5 import ( 6 "github.com/Microsoft/hcsshim/internal/hns" 7 ) 8 9 type HNSSupportedFeatures = hns.HNSSupportedFeatures 10 11 type HNSAclFeatures = hns.HNSAclFeatures 12 13 func GetHNSSupportedFeatures() HNSSupportedFeatures { 14 return hns.GetHNSSupportedFeatures() 15 } 16