From 85812650fc368ce027db3753e9cac47bb3945274 Mon Sep 17 00:00:00 2001 From: damir Date: Sat, 4 Apr 2026 17:47:43 +0000 Subject: [PATCH] Update main.go --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index ffea116..2382392 100644 --- a/main.go +++ b/main.go @@ -10,7 +10,7 @@ import ( func main() { // Главная страница http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { - tmpl := template.Must(template.ParseFiles("templates/index.html")) + tmpl := template.Must(template.ParseFiles("template/index.html")) tmpl.Execute(w, nil) })