6 lines
89 B
Go
Raw Normal View History

2025-08-06 22:31:43 +05:00
package mail
type MailServiceInterface interface {
SendMail(to []string, msg []byte)
}