blob: d23406906973aa229d7632389839a6b32d14eb9d [file] [log] [blame]
Iftekharul Islam99d199f2017-03-24 15:28:25 -05001/**
2 * A module to contain common services
3 *
4 * @module app/common/services/index
5 * @exports app/common/services/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.common.services', [
13 // Dependencies
14 // Basic resources
15 ]);
Iftekharul Islam99d199f2017-03-24 15:28:25 -050016
17})(window.angular);