go-utils/common/uptime.go

13 lines
206 B
Go
Raw Permalink Normal View History

2021-08-11 12:27:54 +00:00
package common
import (
"time"
2021-08-11 12:27:54 +00:00
"github.com/MedzikUser/go-utils/utils"
)
2021-08-19 15:17:58 +00:00
// Return uptime of program e.g. "10m 4s"
func Uptime(start time.Time) string {
return utils.FormatSeconds(time.Since(start))
2021-08-11 12:27:54 +00:00
}