forked from motdotla/node-lambda
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
Latest commit
9 lines (9 loc) · 318 Bytes
/
Copy pathindex.js
File metadata and controls
9 lines (9 loc) · 318 Bytes
1
2
3
4
5
6
7
8
9
// For development/testing purposes
exports.handler=(event,context,callback)=>{
console.log('Running index.handler')
console.log('==================================')
console.log('event',event)
console.log('==================================')
console.log('Stopping index.handler')
callback(null)
}