runc/security/restrict/unsupported.go

10 lines
112 B
Go

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