Signed-off-by: Tibor Vass <tibor@docker.com> (cherry picked from commit effa24bf48170f141cd9e1c1fcb5d39aedf1ca74) Signed-off-by: Tibor Vass <tibor@docker.com> Upstream-commit: 4c35d811471b80eec10476050b1222b653e6c5d9 Component: engine
17 lines
261 B
Go
17 lines
261 B
Go
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()
|
|
}
|