UNPKG

@ntegral/nestjs-sendgrid

Version:

Provides an injectable lulu api client to provide features to the Lulu API

8 lines (6 loc) 274 B
import { SendGridModuleOptions } from '../interfaces'; import { SendGridService } from '../services/sendgrid.service'; export function createSendGridClient(options: SendGridModuleOptions): SendGridService { const client = new SendGridService(options); return client; }