14 lines
276 B
TypeScript
14 lines
276 B
TypeScript
import * as WebSocket from 'ws';
|
|
import ClientBase from '../clientBase';
|
|
|
|
class MHSClient extends ClientBase {
|
|
constructor(data: any, ws: WebSocket) {
|
|
super(data, ws);
|
|
console.log('mhs client created');
|
|
}
|
|
};
|
|
|
|
module.exports = MHSClient;
|
|
export default MHSClient;
|
|
|