Files
zeitkort-web-golang/about.go
T
2026-06-18 21:41:47 +01:00

19 lines
334 B
Go

package main
import (
"net/http"
"time"
)
type aboutView struct {
Version string
ResetIntervalMinutes int
}
func (s *Server) handleAbout(w http.ResponseWriter, r *http.Request) {
s.render(w, "about_page", aboutView{
Version: Version,
ResetIntervalMinutes: int(resetInterval / time.Minute),
})
}