| 31 | ) |
| 32 | |
| 33 | type EmailWithDomain struct { |
| 34 | modName string |
| 35 | instName string |
| 36 | domains []string |
| 37 | log *log.Logger |
| 38 | } |
| 39 | |
| 40 | func NewEmailWithDomain(c *container.C, modName, instName string) (module.Module, error) { |
| 41 | return &EmailWithDomain{ |
nothing calls this directly
no outgoing calls
no test coverage detected