This commit is contained in:
Lain Iwakura 2025-07-12 14:23:02 +03:00
parent a3bddeb876
commit 4806829ba7
No known key found for this signature in database
GPG Key ID: C7C18257F2ADC6F8

View File

@ -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", status := fmt.Sprintf("OpenBSD created: %d:%d:%d:%d:%d:%d:%d:%d\nTimestamp: %d",
years, months, weeks, hours, minutes, seconds, milliseconds, nanoseconds, years, months, weeks, hours, minutes, seconds, milliseconds, nanoseconds,
now.Unix()) int(duration.Seconds()))
fmt.Fprint(w, status) fmt.Fprint(w, status)
} }