UNPKG

serverless-sam

Version:

Serverless framework plugin to export AWS SAM templates for a service

13 lines (10 loc) 262 B
'use strict'; module.exports.endpoint = (event, context, callback) => { const response = { statusCode: 200, body: JSON.stringify({ message: `Hello, the current time is ${new Date().toTimeString()}.`, }), }; callback(null, response); };