UNPKG

serverless

Version:

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

25 lines (21 loc) 354 B
service: aws-nodejs provider: name: aws runtime: nodejs12.x package: individually: true functions: hello: handler: handler.hello package: include: - handler.js exclude: - handler2.js hello2: handler: handler2.hello package: include: - handler2.js exclude: - handler.js