summaryrefslogtreecommitdiff
path: root/vendor/github.com/Microsoft/hcsshim/hnsglobals.go
blob: 2b538190476ea2d2e8590aa3c4fefe5ccc40560e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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()
}