Update main.go

This commit is contained in:
2026-04-04 17:47:43 +00:00
parent 048d64c7a1
commit 85812650fc

View File

@@ -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)
})