af5420420b
This also cleans up some of the left over restriction paths code from before. Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)
9 lines
112 B
Go
9 lines
112 B
Go
// +build !linux
|
|
|
|
package restrict
|
|
|
|
import "fmt"
|
|
|
|
func Restrict() error {
|
|
return fmt.Errorf("not supported")
|
|
}
|