From 25ebb00765301c1a5ded83f6bf29ca7da35865ef Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Mon, 26 Feb 2024 08:03:30 -0500 Subject: [PATCH] refactor: update const names --- mailer/templates.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mailer/templates.go b/mailer/templates.go index a32e0e3..58fd38a 100644 --- a/mailer/templates.go +++ b/mailer/templates.go @@ -10,8 +10,8 @@ import ( const EMAIL_FS_PREFIX = "templates" -const TEMPLATE_PASSWORD_RESET = "password_reset.tpl" -const VERIFY_EMAIL = "verify_email.tpl" +const TPL_PASSWORD_RESET = "password_reset.tpl" +const TPL_VERIFY_EMAIL = "verify_email.tpl" type EmailTemplate struct { Subject *template.Template