Files
OwnCord/Server/diskutil/free_other.go
T

9 lines
175 B
Go
Raw Normal View History

//go:build !linux && !darwin && !windows
package diskutil
// FreeBytes is unsupported on this platform.
func FreeBytes(string) (uint64, error) {
return 0, ErrUnsupported
}