forked from baron/baron-sso
7 lines
149 B
Go
7 lines
149 B
Go
package domain
|
|
|
|
// EmailService defines the interface for sending emails.
|
|
type EmailService interface {
|
|
SendEmail(to, subject, body string) error
|
|
}
|