| Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 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 | |||||
| 9 | window.angular && (function (angular) { | ||||
| 10 | 'use strict'; | ||||
| 11 | |||||
| 12 | angular | ||||
| 13 | .module('app.common.services', [ | ||||
| 14 | // Dependencies | ||||
| 15 | // Basic resources | ||||
| 16 | ]); | ||||
| 17 | |||||
| 18 | })(window.angular); | ||||