Skip to content

Instantly share code, notes, and snippets.

@mr-rigden
Created August 6, 2017 00:40
Show Gist options
  • Save mr-rigden/85be427b85d8c88325ecbb5753a8648a to your computer and use it in GitHub Desktop.
Save mr-rigden/85be427b85d8c88325ecbb5753a8648a to your computer and use it in GitHub Desktop.
##############################
# Program Entry
##############################
def lambda_handler(event, context):
if event['request']['type'] == "LaunchRequest":
return on_launch(event, context)
elif event['request']['type'] == "IntentRequest":
return intent_router(event, context)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment