mailerIssue is a wrapper for satisfying mailer.Issue interface.
| 82 | |
| 83 | // mailerIssue is a wrapper for satisfying mailer.Issue interface. |
| 84 | type mailerIssue struct { |
| 85 | issue *Issue |
| 86 | } |
| 87 | |
| 88 | func (mi mailerIssue) MailSubject() string { |
| 89 | return mi.issue.MailSubject() |
nothing calls this directly
no outgoing calls
no test coverage detected