botbuilder-formflow
Version:
Form flow with subdialogs
19 lines • 364 B
JavaScript
module.exports = [
{
"user": "hi"
},
{
"bot": "Please enter a URL value"
},
{"user": "blabla"},
{
"bot": "I don't understand that. Could you something that starts with http or https:/?"
},
{"user": "http://example.com/"},
{
"bot": "You selected http://example.com/"
},
{
"bot": "{\"value\":\"http://example.com/\"}"
}
];