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,8 @@
// Package memory return MemoryInfoStat
// modify from https://github.com/shirou/gopsutil/tree/v4.25.1/process
package memory
type MemoryInfoStat struct {
RSS uint64 `json:"rss"` // bytes
VMS uint64 `json:"vms"` // bytes
}