blob: c27d81daa3dd5055ff0018a37a17c323344ff2ef [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
6 * @version 0.0.1
7 */
8
9window.angular && (function (angular) {
10 'use strict';
11
12 angular
13 .module('app.constants', [])
14 .constant('AppConstants', {
15 });
16
17})(window.angular);