This file contains hidden or 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
const builder = require('botbuilder') | |
const restify = require('restify') | |
const cognitiveServices = require('botbuilder-cognitiveservices') // incluir no projeto npm i -s botbuilder-cognitiveservices | |
//========================================================= | |
// Bot Setup | |
//========================================================= | |
const port = process.env.port || process.env.PORT || 3978 | |
const server = restify.createServer() |