mounter_darwin.go 194 B

123456789
  1. package mount
  2. func mount(device, target, mType string, flag uintptr, data string) error {
  3. panic("Not implemented")
  4. }
  5. func unmount(target string, flag int) error {
  6. panic("Not implemented")
  7. }