summaryrefslogtreecommitdiffstats
path: root/app/core/header/header.module.js
blob: 24c09298d16ba9c57692f2608e97a9675e56eb01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(function () {

    'use strict';

    angular
        .module('dcaeApp.header', [])
        .config(config);

    function config() {

    }

})();