UNPKG

botbuilder-dialog-loader

Version:

A Library that helps to autload Microsoft Bot Framework dialogs

18 lines 445 B
module.exports = function (bot, name) { bot.dialog('/welcome', [ function (session) { session.beginDialog('/introduction'); }, function (session) { session.send(`My name is - ${name}`) session.beginDialog('/askForName') }, function (session, results) { console.log(results); session.beginDialog('/seeyou'); }, function (session,results) { session.endConversation(); } ]); }