Skip to content

Instantly share code, notes, and snippets.

@sungjunyoung
Created January 27, 2017 07:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sungjunyoung/53cc873c006145585c245ef2969d1804 to your computer and use it in GitHub Desktop.
Save sungjunyoung/53cc873c006145585c245ef2969d1804 to your computer and use it in GitHub Desktop.
exports.handler = (event, context, callback) => {
// TODO implement
var returnObj = {
type : "buttons",
"buttons": ["Very","Sorry","Line"]
}
callback(null, returnObj);
return;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment