mirror of
https://github.com/J3vb/OwnCord.git
synced 2026-09-03 03:50:00 +03:00
10 lines
408 B
Go
10 lines
408 B
Go
// Package diskutil reports free disk space for a path, with per-OS
|
|||
|
|
// implementations behind build tags. Consumers treat errors (including
|
||
|
|
// ErrUnsupported on exotic platforms) as "unknown", never as "full".
|
||
|
|
package diskutil
|
||
|
|
|
||
|
|
import "errors"
|
||
|
|
|
||
|
|
// ErrUnsupported is returned on platforms without an implementation.
|
||
|
|
var ErrUnsupported = errors.New("diskutil: free-space query not supported on this platform")
|