mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 09:04:52 +01:00
11 lines
254 B
Go
11 lines
254 B
Go
//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
|
|
}
|