From 4806829ba7d0aba34dd8b40a403288f5cffb35f1 Mon Sep 17 00:00:00 2001 From: Lain Iwakura Date: Sat, 12 Jul 2025 14:23:02 +0300 Subject: [PATCH] tested! --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 46244af..19623f6 100644 --- a/main.go +++ b/main.go @@ -115,7 +115,7 @@ func statusHandler(w http.ResponseWriter, r *http.Request) { status := fmt.Sprintf("OpenBSD created: %d:%d:%d:%d:%d:%d:%d:%d\nTimestamp: %d", years, months, weeks, hours, minutes, seconds, milliseconds, nanoseconds, - now.Unix()) + int(duration.Seconds())) fmt.Fprint(w, status) }