mirror of
https://github.com/stashapp/stash.git
synced 2025-12-09 18:04:33 +01:00
15 lines
268 B
Go
15 lines
268 B
Go
package sysutil
|
|
|
|
import "time"
|
|
|
|
var btime time.Time
|
|
|
|
// BootTime returns the time the system was started.
|
|
func BootTime() time.Time {
|
|
return btime
|
|
}
|
|
|
|
// Uptime returns the duration the system has been up.
|
|
func Uptime() time.Duration {
|
|
return time.Now().Sub(btime)
|
|
}
|