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