Skip to content

Instantly share code, notes, and snippets.

@kiramishima
Last active February 27, 2019 00:04
Show Gist options
  • Save kiramishima/b1f7762acf7ce71cb25aae93a1986d30 to your computer and use it in GitHub Desktop.
Save kiramishima/b1f7762acf7ce71cb25aae93a1986d30 to your computer and use it in GitHub Desktop.
Ejemplo AWS Lambda
def lambda_handler(event, context):
print("Hola desde AWS Lambda")
exports.handler = async (event) => {
// TODO implement
return 'Hola desde AWS Lambda';
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment