mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2025-12-19 16:30:07 +08: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
|
|
}
|