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