chore: publish pxmon v0.2.0
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
//go:build windows
|
||||
|
||||
package agent
|
||||
|
||||
// statfsUsage is a compatibility fallback for Windows builds where
|
||||
// syscall.Statfs is unavailable. We return zero-sized stats instead of
|
||||
// failing compilation; disk health/usage can be extended with native APIs.
|
||||
func statfsUsage(path string) (total, free uint64, err error) {
|
||||
return 0, 0, nil
|
||||
}
|
||||
Reference in New Issue
Block a user