UNPKG

serverless-offline-sns

Version:

Serverless plugin to run a local SNS server and call lambdas with events notifications.

10 lines (7 loc) 164 B
import { setPongs } from "./mock.state.js"; let nPongs = 0; export const itsGotDots = (evt, ctx, cb) => { nPongs += 1; setPongs(nPongs); cb(null, "{}"); };