| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 1x 1x | const builder = require('botbuilder');
module.exports = [
{
"user": "hi"
},
{
"bot": "Please upload an attachment"
},
{
"user": function ( ) {
let msg = new builder.Message();
msg.addAttachment({
"name": "test",
"contentType": "plain/text",
"content": "Hello world"
});
return Promise.resolve(msg);
}
},
{
"bot": "Your response is:test:plain/text"
}
]; |