UNPKG

serverless

Version:

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

10 lines (7 loc) 160 B
'use strict'; exports.http = (request, response) => { response.status(200).send('Hello World!'); }; exports.event = (event, callback) => { callback(); };