package sysutil

import 

var btime time.Time

// BootTime returns the time the system was started.
func () time.Time {
	return btime
}

// Uptime returns the duration the system has been up.
func () time.Duration {
	return time.Now().Sub(btime)
}