hnsglobals.go 281 B

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