Skip to content

Instantly share code, notes, and snippets.

@lyingdragon
Last active June 26, 2018 10:24
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 lyingdragon/cbbaa965d96ca1955915cbaa3b5312a8 to your computer and use it in GitHub Desktop.
Save lyingdragon/cbbaa965d96ca1955915cbaa3b5312a8 to your computer and use it in GitHub Desktop.
Handle GuideIntents Code in Markdown
const intent = this.request.intent.name
...
switch (intent) {
  ...
  case 'Clova.GuideIntent':
    cekResponse.appendSpeechText("주사위 한 개 던져줘, 라고 시도해보세요.")
    break
  default:
    cekResponse.appendSpeechText("죄송해요. 이해할 수 없습니다.")
    cekResponse.appendSpeechText("주사위 한 개 던져줘, 라고 시도해보세요.")
}

test

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment