2019-05-30 15:20:58 +02:00

25 lines
354 B
YAML

service: aws-nodejs
provider:
name: aws
runtime: nodejs10.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