()
| 22 | type EmailService struct{ BaseService } |
| 23 | |
| 24 | func (emailService *EmailService) getCollection() (collection *mgm.Collection) { |
| 25 | coll := mgm.CollectionByName("email") |
| 26 | return coll |
| 27 | } |
| 28 | |
| 29 | func loadEmail(code string, lang string) (email *models.Email, err error) { |
| 30 | email = &models.Email{} |
no outgoing calls
no test coverage detected