20 lines
560 B
Go
20 lines
560 B
Go
package service
|
|
|
|
import (
|
|
"git.amok.space/yevhen/resource-scraper/internal/mail"
|
|
"git.amok.space/yevhen/resource-scraper/types/interface"
|
|
"git.amok.space/yevhen/resource-scraper/types/model"
|
|
)
|
|
|
|
type ShareTheBrutalityService struct {
|
|
repo _interface.ShareTheBrutality
|
|
}
|
|
|
|
func NewShareTheBrutalityService(repo _interface.ShareTheBrutality) *ShareTheBrutalityService {
|
|
return &ShareTheBrutalityService{repo: repo}
|
|
}
|
|
|
|
func (stb *ShareTheBrutalityService) GetMail(email string) ([]model.ExternalSources, *mail.EmailService) {
|
|
return stb.repo.GetMail(email)
|
|
}
|