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