mirror of
https://github.com/nasa/openmct.git
synced 2025-03-14 16:26:50 +00:00
14 lines
268 B
JavaScript
14 lines
268 B
JavaScript
|
define(['EventEmitter'], function (EventEmitter) {
|
||
|
function MCT() {
|
||
|
EventEmitter.call(this);
|
||
|
}
|
||
|
|
||
|
MCT.prototype = Object.create(EventEmitter.prototype);
|
||
|
|
||
|
MCT.prototype.start = function () {
|
||
|
this.emit('start');
|
||
|
};
|
||
|
|
||
|
return MCT;
|
||
|
});
|