aboutsummaryrefslogtreecommitdiffstats
path: root/app/app.controller.js
blob: 94e79a120f370cbcd63c814be08055139095e7cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(function () {

    'use strict';

    angular
        .module('dcaeApp')
        .controller('AppController', AppController);

    function AppController($state,
                           $timeout,
                           $rootScope) {

        var vm = this;

    }

})();