blob: bbb085bece2e4f1d721cdaf7ec0a7cb9ab934fa9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
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)
}
|