Files
ezbookkeeping/pkg/templates/known_template.go
T
2023-09-04 23:30:33 +08:00

10 lines
201 B
Go

package templates
type KnownTemplate string
// Known templates
const (
TEMPLATE_VERIFY_EMAIL KnownTemplate = "email/verify_email"
TEMPLATE_PASSWORD_RESET KnownTemplate = "email/password_reset"
)