Files
polaris/pkg/utils/other.go
2024-09-29 14:27:01 +08:00

17 lines
171 B
Go

//go:build !linux
// +build !linux
package utils
import (
"math"
)
func AvailableSpace(dir string) uint64 {
return math.MaxUint64
}
func MaxPermission() {
return
}