blob: 43e38b6d7642dd5d530b9d01857d5c82e4c3e683 [file] [log] [blame]
Iftekharul Islam99d199f2017-03-24 15:28:25 -05001/**
2 * A module with constants for the application
3 *
4 * @module app/constants/index
5 * @exports app/constants/index
Iftekharul Islam99d199f2017-03-24 15:28:25 -05006 */
7
8window.angular && (function (angular) {
9 'use strict';
10
11 angular
12 .module('app.constants', [])
13 .constant('AppConstants', {
14 });
15
16})(window.angular);