docs/pkg/libcontainer/security/restrict/unsupported.go

10 lines
132 B
Go

// +build !linux
package restrict
import "fmt"
func Restrict(rootfs, empty string) error {
return fmt.Errorf("not supported")
}