Skip to content

Commit

Permalink
fix: name case SNS/SQS/WSS
Browse files Browse the repository at this point in the history
  • Loading branch information
steve-lemon committed Jul 19, 2019
1 parent 0b1a8ca commit cc07902
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ const $scope = { name: 'lemon-hello-api' };
const $lemon = require(`${SRC}index`)($scope, $env);

//! Load Additional Handlers
const SNS = require(`${SRC}sns`)($lemon);
const SQS = require(`${SRC}sqs`)($lemon);
const WSS = require(`${SRC}wss`)($lemon);
const SNS = require(`${SRC}SNS`)($lemon);
const SQS = require(`${SRC}SQS`)($lemon);
const WSS = require(`${SRC}WSS`)($lemon);

//! export serverless handlers.
module.exports = Object.assign($scope, { SNS, WSS, SQS });

0 comments on commit cc07902

Please sign in to comment.