const System = require('./r3-system.js'); module.exports = class SocketSystem extends System { constructor() { super(); console.log('hi there from socket system'); } static start() { super.start(); console.log('starting socket system'); return true; } }