feat(aa): rename the main file template.

This commit is contained in:
Alexandre Pujol 2024-04-15 13:32:20 +01:00
parent ab4feda5ba
commit 507002c660
No known key found for this signature in database
GPG key ID: C5469996F0DF68EC
2 changed files with 1 additions and 1 deletions

View file

@ -96,7 +96,7 @@ var (
)
func generateTemplate() *template.Template {
res := template.New("profile.j2").Funcs(tmplFunctionMap)
res := template.New("file.j2").Funcs(tmplFunctionMap)
res = template.Must(res.ParseFS(tmplFiles, "templates/*.j2"))
return res
}