package view import ( "embed" "html/template" ) //go:embed html/*.html var htmlFS embed.FS var html *template.Template func init() { html = template.Must(template.New("html").ParseFS(htmlFS, "html/*.html")) }