From 3036abbc4af1e85e3f3d473c9facdeefb94916c7 Mon Sep 17 00:00:00 2001 From: Bobby <30593201+luciferreeves@users.noreply.github.com> Date: Tue, 23 Dec 2025 10:57:04 +0530 Subject: email templates, routes and utils --- utils/email/helpers.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 utils/email/helpers.go (limited to 'utils') diff --git a/utils/email/helpers.go b/utils/email/helpers.go new file mode 100644 index 0000000..eb95726 --- /dev/null +++ b/utils/email/helpers.go @@ -0,0 +1,9 @@ +package email + +import ( + "slices" +) + +func hasAttribute(attrs []string, attr string) bool { + return slices.Contains(attrs, attr) +} -- cgit v1.2.3