UNPKG

generator-msbf-watson-coco

Version:

A yeoman generator for creating bots built with Bot Framework v4, for Watson and CoCo

12 lines (10 loc) 280 B
const initDefaultResponder = () => { const handleTurn = async context => { return Promise.resolve({ text: `${context.activity.text} to you too`, raw: {} }); }; return handleTurn; }; module.exports.initDefaultResponder = initDefaultResponder;