pkg/libcontainer/security/restrict/unsupported.go

10 lines
132 B
Go
Raw Normal View History

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