@benie/lambda-lib
Version:
Builders and tools for creating AWS Lambda function handlers that provides automation for things such as logging, instrumentation and parameters propagation
11 lines (10 loc) • 362 B
JavaScript
const httpClient = require('./http-client');
const snsClient = require('./sns-client');
const RemoteExceptions = require('./remote-exceptions');
module.exports = {
httpClient,
snsClient,
RemoteException: RemoteExceptions.RemoteException,
ClientException: RemoteExceptions.ClientException,
ServerException: RemoteExceptions.ServerException
};