mirror of
https://github.com/rclone/rclone
synced 2024-11-05 01:42:31 +01:00
7 lines
184 B
Go
7 lines
184 B
Go
package file
|
|
|
|
import "errors"
|
|
|
|
// ErrDiskFull is returned from PreAllocate when it detects disk full
|
|
var ErrDiskFull = errors.New("preallocate: file too big for remaining disk space")
|