Files
docker-cli/components/engine/mount_darwin.go
T
2013-02-13 17:10:00 -08:00

8 lines
190 B
Go

package docker
import "errors"
func mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
return errors.New("mount is not implemented on darwin")
}