mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2026-02-26 16:57:08 +00:00
9 lines
226 B
Go
9 lines
226 B
Go
// 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
|
|
}
|