index.js 197 B

12345678910111213
  1. var activator = {
  2. start(context) {
  3. context.channel('core-http')
  4. .on('hci-http:req:/test',(req,res) => {
  5. res.end('Hello word');
  6. });
  7. }
  8. }
  9. module.exports.bundleActivator = activator;