Oi pessoal, Ao executar o main.go recebo o erro abaixo: Erro no terminal: goroutine 1 [running]: html/template.Must(...) C:/Program Files/Go/src/html/template/template.go:374 main.init() C:/Users/user/go/src/alura/main.go:8 +0xa5 exit status 2
Abaixo meu arquivo main.go:
package main
import (
"html/template"
"net/http"
)
var temp = template.Must(template.ParseGlob("templates/*.html"))
func main() {
http.HandleFunc("/", index)
http.ListenAndServe(":8000", nil)
}
func index(w http.ResponseWriter, r *http.Request) {
temp.ExecuteTemplate(w, "Index", nil)
}
Abaixo meu arquivo index.html
{{define "Index"}}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Loja</title>
</head>
<body>
<h1>Alura Loja</h1>
<table>
<thead>
<tr>
<th>Nome</th>
<th>Descrição</th>
<th>Preço</th>
<th>Quantidade</th>
</tr>
</thead>
<tbody>
<tr>
<td>Camiseta</td>
<td>Bem bonita</td>
<td>29</td>
<td>10</td>
</tr>
<tr>
<td>Notebook</td>
<td>Muito rápido</td>
<td>1999</td>
<td>2</td>
</tr>
</tbody>
</table>
</body>
</html>
{{end}}
Eu uso Windows 10 (go version go1.16.2 windows/amd64). Por favor, alguém poderia me ajudar?