hnssupport.go 284 B

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