mirror of
https://github.com/Floriansylvain/RenewCMS.git
synced 2026-08-19 19:53:21 +02:00
6 lines
111 B
Go
6 lines
111 B
Go
package mail
|
|
|
|
type Repository interface {
|
|
Send(receiverAddress string, templateName string, data any) error
|
|
}
|