mirror of
https://github.com/containers/podman.git
synced 2025-09-26 00:06:04 +08:00

* If possible, update each dependency to the latest available version. * Use releases over commit IDs and avoid vendoring branches. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
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()
|
|
}
|