[Framework] Initial skeletons for framework

Initial skeletons for framework classes, WTD-518.
This commit is contained in:
Victor Woeltjen
2014-10-31 13:15:05 -07:00
parent 83d06b6f8f
commit b55c6b8bce
3 changed files with 135 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
/*global define*/
/**
* Module defining BundleLoader.js. Created by vwoeltje on 10/31/14.
*/
define(
[],
function () {
"use strict";
/**
*
* @constructor
*/
function BundleLoader() {
return {
};
}
return BundleLoader;
}
);