mount_darwin.go 190 B

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