index.js 235 B

12345678910111213141516
  1. var log = require('hlogger').createLogger('config');
  2. var configActivator = {
  3. start(context) {
  4. },
  5. stop(context) {
  6. },
  7. test() {
  8. console.log("Testing the configuration");
  9. }
  10. }
  11. module.exports.bundleActivator = configActivator;