aboutsummaryrefslogtreecommitdiffstats
path: root/app/app.module.js
blob: 47507e6074dba674a8e99945856e8060529f3c91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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

        ]);
})();