mounter_unsupported.go 256 B

1234567891011
  1. // +build !linux,!freebsd,!solaris freebsd,!cgo solaris,!cgo
  2. package mount
  3. func mount(device, target, mType string, flag uintptr, data string) error {
  4. panic("Not implemented")
  5. }
  6. func unmount(target string, flag int) error {
  7. panic("Not implemented")
  8. }