var activator = { start(context) { context.channel('core-http') .on('hci-http:req:/test',(req,res) => { res.end('Hello word'); }); } } module.exports.bundleActivator = activator;