UNPKG

serverless

Version:

Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more

15 lines (13 loc) 240 B
'use strict'; module.exports.handler = async (event) => { return { statusCode: 200, body: JSON.stringify( { message: `Hello, world! Your function executed successfully!`, }, null, 2 ), }; };