1
0
mirror of https://github.com/rclone/rclone.git synced 2025-01-24 12:56:36 +02:00
rclone/lib/diskusage/diskusage_unsupported.go

11 lines
254 B
Go
Raw Normal View History

//go:build illumos || js || plan9 || solaris
package diskusage
// New returns the disk status for dir.
//
// May return Unsupported error if it doesn't work on this platform.
func New(dir string) (info Info, err error) {
return info, ErrUnsupported
}