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
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()
|
|
}
|