mirror of
https://github.com/shirou/gopsutil.git
synced 2025-05-10 19:29:14 +08:00
8 lines
147 B
Go
8 lines
147 B
Go
package gopsutil
|
|
|
|
type HostInfoStat struct {
|
|
Hostname string `json:"hostname"`
|
|
Uptime int64 `json:"uptime"`
|
|
Procs uint64 `json:"procs"`
|
|
}
|