Last active
August 3, 2017 13:09
-
-
Save IvanaSays/faea209115b68e36ca1d1b7ed3feaafe to your computer and use it in GitHub Desktop.
alexa_sdk_exports.js
This file contains 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
exports.handler = function(event, context, callback) { | |
var alexa = Alexa.handler(event, context); | |
alexa.appId = appId; | |
alexa.dynamoDBTableName = dynamoDBTableName; | |
alexa.registerHandlers(newSessionHandlers, getRulesHandlers); | |
alexa.execute(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment