
Implements the containerd-shim-runhcs-v1 shim on Windows for the runtime v2 shim API. Signed-off-by: Justin Terry (VM) <juterry@microsoft.com>
14 lines
264 B
Go
14 lines
264 B
Go
package hcsshim
|
|
|
|
import (
|
|
"github.com/Microsoft/hcsshim/internal/hns"
|
|
)
|
|
|
|
type HNSSupportedFeatures = hns.HNSSupportedFeatures
|
|
|
|
type HNSAclFeatures = hns.HNSAclFeatures
|
|
|
|
func GetHNSSupportedFeatures() HNSSupportedFeatures {
|
|
return hns.GetHNSSupportedFeatures()
|
|
}
|