fix: usar text/template en lugar de html/template para validar sintaxis de plantillas

This commit is contained in:
Lizandro Guarnizo
2026-04-30 23:02:09 -05:00
parent 4e564a7e28
commit ec8efe2dd7
+1 -1
View File
@@ -1,10 +1,10 @@
package controllers package controllers
import ( import (
"html/template"
"math" "math"
"strconv" "strconv"
"strings" "strings"
"text/template"
"github.com/gofiber/fiber/v2" "github.com/gofiber/fiber/v2"
"github.com/sujit-baniya/fiber-boilerplate/pkg/models" "github.com/sujit-baniya/fiber-boilerplate/pkg/models"