2016-09-01 22:13:52 +00:00
|
|
|
define(['./MCT', './api/Type'], function (MCT, Type) {
|
2016-09-01 21:35:52 +00:00
|
|
|
/**
|
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();
|
|
|
|
|
2016-09-01 22:51:25 +00:00
|
|
|
openmct.MCT = MCT;
|
2016-09-01 22:13:52 +00:00
|
|
|
openmct.Type = Type;
|
|
|
|
|
2016-09-01 21:35:52 +00:00
|
|
|
return openmct;
|
|
|
|
});
|