1/**
2 * A module to contain common services
3 *
4 * @module app/common/services/index
5 * @exports app/common/services/index
6 */
7
8window.angular && (function(angular) {
9  'use strict';
10
11  angular.module('app.common.services', [
12    // Dependencies
13    // Basic resources
14  ]);
15})(window.angular);
16