index.js 170 B

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