From ec8efe2dd76afa45f907bb7a8e499ac8b45af7e7 Mon Sep 17 00:00:00 2001 From: Lizandro Guarnizo <77708265+lizandrogd@users.noreply.github.com> Date: Thu, 30 Apr 2026 23:02:09 -0500 Subject: [PATCH] fix: usar text/template en lugar de html/template para validar sintaxis de plantillas --- rest/controllers/notificacion_controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest/controllers/notificacion_controller.go b/rest/controllers/notificacion_controller.go index 6491208..c93a3ff 100644 --- a/rest/controllers/notificacion_controller.go +++ b/rest/controllers/notificacion_controller.go @@ -1,10 +1,10 @@ package controllers import ( - "html/template" "math" "strconv" "strings" + "text/template" "github.com/gofiber/fiber/v2" "github.com/sujit-baniya/fiber-boilerplate/pkg/models"