Last active
January 1, 2020 08:00
-
-
Save imewish/534031c8624b6e0ebed3df6ed3426850 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
module.exports.api = async event => { | |
return { | |
statusCode: 200, | |
body: JSON.stringify( | |
{ | |
message: 'Go Serverless v1.0! Your function executed successfully!' | |
}, | |
null, | |
2 | |
), | |
}; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment