index.js 198 B

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