UNPKG

@squareboat/nest-eyewitness

Version:

A simple easy-to-use package to receive error reports directly to your inbox whenever any exception is witnessed 👀 in your NestJS application.

13 lines (11 loc) • 374 B
import { MailmanOptions, MailmanOptionsFactory, } from '@squareboat/nest-mailman'; import { EyewitnessService } from './service'; import { EyewitnessModule } from './module'; export class MailmanConfigFactory implements MailmanOptionsFactory { createMailmanOptions(): MailmanOptions | Promise<MailmanOptions> { return EyewitnessService.getConfig().mailman; } }