mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
45dd051e8e
Docker-DCO-1.1-Signed-off-by: Guillaume J. Charmes <guillaume.charmes@docker.com> (github: creack)
10 lines
234 B
Go
10 lines
234 B
Go
// +build: !linux !amd64
|
|
package aufs
|
|
|
|
import "errors"
|
|
|
|
const MsRemount = 0
|
|
|
|
func mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
|
|
return errors.New("mount is not implemented on darwin")
|
|
}
|