feat: WIP auth mailing implementation

This commit is contained in:
Florian Sylvain
2024-05-13 19:22:56 +02:00
parent d146363246
commit 8015639db5
13 changed files with 139 additions and 113 deletions
+5
View File
@@ -0,0 +1,5 @@
package gateways
type IMailRepository interface {
Send(receiverAddress string, templateName string, data interface{}) error
}