botbuilder-formflow
Version:
Form flow with subdialogs
32 lines (29 loc) • 514 B
JavaScript
module.exports = [
{
"user": "hi"
},
{
"bot": "Please enter your login"
},
{"user": "Anonymous"},
{
"bot": "Your login is Anonymous"
},
{
"bot": "Please enter your password"
},
{"user": "qwerty"},
{
"bot": "Your password is qwerty"
},
{
"bot": "Please enter your email"
},
{"user": "email@email.com"},
{
"bot": "Your email is email@email.com"
},
{
"bot": "{\"login\":\"Anonymous\",\"password\":\"qwerty\",\"email\":\"email@email.com\"}"
}
];