mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-02-11 11:39:15 +00:00
13 lines
221 B
JavaScript
13 lines
221 B
JavaScript
'use strict';
|
|
|
|
var EventEmitter = require('events').EventEmitter,
|
|
inherits = require('util').inherits;
|
|
|
|
function Command(params) {
|
|
this.setParams(params);
|
|
}
|
|
|
|
exports.Command = Command;
|
|
|
|
inherits(Command, EventEmitter);
|