wastebasket_noop.go 180 B

1234567891011
  1. //go:build android || ios || js
  2. package wastebasket
  3. func Trash(paths ...string) error {
  4. return ErrPlatformNotSupported
  5. }
  6. func Empty() error {
  7. return ErrPlatformNotSupported
  8. }