mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-16 12:54:22 +01:00
To prepare for merging into kata-containers repository. Signed-off-by: Peng Tao <bergwolf@hyper.sh>
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()
|
|
}
|