2019-11-20 09:44:55 +01:00

25 lines
354 B
YAML

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