chore: remove depend of gopsutil

This commit is contained in:
wwqgtxx
2025-09-24 02:21:47 +08:00
parent 0c25831726
commit 0992ee8adf
19 changed files with 1424 additions and 33 deletions

View File

@@ -0,0 +1,11 @@
//go:build !darwin && !linux && !freebsd && !openbsd && !windows
package memory
import "errors"
var ErrNotImplementedError = errors.New("not implemented yet")
func GetMemoryInfo(pid int32) (*MemoryInfoStat, error) {
return nil, ErrNotImplementedError
}