UNPKG

@webda/core

Version:

Expose API with Lambda

14 lines (10 loc) 241 B
import { Service } from "@webda/core"; export class DebugMailer extends Service { constructor(webda, name, params) { super(webda, name, params); this.sent = []; } send(options, callback) { this.sent.push(options); } }