passman/js/app/services/cacheservice.js

14 lines
292 B
JavaScript
Raw Normal View History

2016-09-11 05:30:17 +08:00
'use strict';
/**
* @ngdoc service
2016-09-16 03:21:34 +08:00
* @name passmanApp.CacheService
2016-09-11 05:30:17 +08:00
* @description
2016-09-16 03:21:34 +08:00
* # CacheService
2016-09-11 05:30:17 +08:00
* Service in the passmanApp.
*/
angular.module('passmanApp')
.service('CacheService', [function () {
// AngularJS will instantiate a singleton by calling "new" on this function
}]);