aboutsummaryrefslogtreecommitdiffstats
path: root/app/app.module.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/app.module.js')
-rw-r--r--app/app.module.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/app/app.module.js b/app/app.module.js
new file mode 100644
index 0000000..47507e6
--- /dev/null
+++ b/app/app.module.js
@@ -0,0 +1,29 @@
+(function () {
+
+ 'use strict';
+
+ angular
+ .module('dcaeApp', [
+
+ // Core
+ 'ui.router',
+ 'dcaeApp.env',
+
+ // Modules
+ 'dcaeApp.header',
+ 'dcaeApp.navigation',
+ 'dcaeApp.main',
+ 'dcaeApp.dashboard.home',
+ 'dcaeApp.dashboard.about',
+ 'dcaeApp.dashboard.dcae',
+
+ // Services
+ 'dcaeApp.services.cacheService',
+ 'dcaeApp.services.users'
+
+ // Interceptors
+
+ // Main pages
+
+ ]);
+})();