mirror of
https://github.com/fankes/komari-agent.git
synced 2025-10-19 02:59:23 +08:00
12 lines
128 B
Go
12 lines
128 B
Go
package monitoring
|
|
|
|
import (
|
|
"github.com/shirou/gopsutil/v4/host"
|
|
)
|
|
|
|
func Uptime() (uint64, error) {
|
|
|
|
return host.Uptime()
|
|
|
|
}
|