| 18 | type SendEmail = (args: SendEmailArgs) => Promise<void>; |
| 19 | |
| 20 | export interface MailProvider { |
| 21 | send: SendEmail; |
| 22 | } |
| 23 | |
| 24 | const plugin: FastifyPluginCallback<{ provider: MailProvider }> = ( |
| 25 | fastify, |
nothing calls this directly
no outgoing calls
no test coverage detected