mt-multiserver-proxy/uptime.go

11 lines
178 B
Go
Raw Permalink Normal View History

2021-09-11 06:38:45 -07:00
package proxy
import "time"
var startTime = time.Now()
// Uptime returns the time the proxy has been running for
func Uptime() time.Duration {
return time.Since(startTime)
}