wastebasket.go 273 B

1234567
  1. // Package wastebasket allows you to interact with your system trashbin.
  2. package wastebasket
  3. import "errors"
  4. // ErrPlatformNotSupported indicates that the current platform does not suport trashing files.
  5. var ErrPlatformNotSupported = errors.New("platform not supported")