версия теперь соответствует юникс метке запуска сервера

master
serr 2025-03-26 14:16:39 +03:00
parent 956649cd9d
commit ef3f8fb2c0
2 changed files with 6 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 111 KiB

After

Width:  |  Height:  |  Size: 41 KiB

View File

@ -21,6 +21,10 @@ sudo systemctl start server.service
*/
var (
startTime int64
)
func main() {
// Загрузка шаблонов
tmpls, err := loadTemplates(cfg.TemplatesPath, cfg.TemplatesExt)
@ -33,6 +37,7 @@ func main() {
// Запуск сервера
log.Println("Run on", cfg.ServerAddr)
startTime = time.Now().Unix()
log.Fatal(http.ListenAndServe(cfg.ServerAddr, nil))
}
@ -53,7 +58,7 @@ func setupRoutes(tmpls *template.Template) {
tmplName := "main.html"
context = map[string]any{
"timestamp": time.Now().Unix(),
"timestamp": startTime,
}
pageData, err = renderPage(tmpls, tmplName, context)