mount_unsupported.go 227 B

1234567891011
  1. // +build !linux
  2. package aufs
  3. import "errors"
  4. const MsRemount = 0
  5. func mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
  6. return errors.New("mount is not implemented on darwin")
  7. }