]> git.cworth.org Git - turbot/blob - turbot_lambda/turbot_lambda.py
d441565186ab563470778c603a08732417f4cece
[turbot] / turbot_lambda / turbot_lambda.py
1 from turbot.rot import rot
2
3 def turbot_lambda(event, context):
4     """Top-level entry point for our lambda function.
5
6     Currently only calls into the rot() function but may become more
7     sophisticated later on."""
8
9     return rot(event['text'])