Skip to content

Instantly share code, notes, and snippets.

@kevinl95
Created January 12, 2017 22:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevinl95/28f6cc42ee81e15c340dbeb2d10da21f to your computer and use it in GitHub Desktop.
Save kevinl95/28f6cc42ee81e15c340dbeb2d10da21f to your computer and use it in GitHub Desktop.
function output( text, context ) {
var response = {
outputSpeech: {
type: "PlainText",
text: text
},
card: {
type: "Simple",
title: "Thornton Windchill",
content: text
},
shouldEndSession: true
};
context.succeed( { response: response } );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment