1/**
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);
19