blob: 5d7e18c0ebdda27294f7680df0ced4b835465ff7 [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
Andrew Geisslerba5e3f32018-05-24 10:58:00 -07008window.angular && (function(angular) {
9 'use strict';
Iftekharul Islam99d199f2017-03-24 15:28:25 -050010
Andrew Geisslerba5e3f32018-05-24 10:58:00 -070011 angular
12 .module('app.constants', [])
13 .constant('AppConstants', {});
Iftekharul Islam99d199f2017-03-24 15:28:25 -050014
15})(window.angular);