r3-v2/dist/r3-node/r3-system/r3-system-socket.js

17 lines
214 B
JavaScript
Raw Normal View History

2020-04-23 15:26:54 +02:00
const System = require('./r3-system.js');
2021-06-18 02:10:32 +02:00
class SocketSystem extends System {
2020-04-23 15:26:54 +02:00
static start() {
super.start();
console.log('starting socket system');
return true;
2021-06-19 11:27:32 +02:00
}
2020-04-23 15:26:54 +02:00
}
2021-06-18 02:10:32 +02:00
module.exports = SocketSystem;