mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f5139233b9
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")
|
|
}
|