openmct/src/openmct.js

14 lines
397 B
JavaScript
Raw Normal View History

2016-09-01 21:35:52 +00:00
define(['./MCT'], function (MCT) {
/**
2016-09-01 21:42:55 +00:00
* Open MCT is an extensible web application for building mission
* control user interfaces. This module is itself an instance of
* [MCT]{@link module:openmct.MCT}, which provides an interface for
* configuring and executing the application.
*
2016-09-01 21:35:52 +00:00
* @exports openmct
*/
var openmct = new MCT();
return openmct;
});