mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
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()
|
|
}
|