Files
docker-cli/components/engine/graph/mount_darwin.go
Solomon Hykes 9cae75046a docker/graph: a store for filesystem images and the graph of their relationships
Upstream-commit: 33f6a0aaf58734f39af564123ca2c0056a3f1bd4
Component: engine
2013-03-18 00:15:35 -07:00

8 lines
189 B
Go

package graph
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")
}