mirror of
https://github.com/nextcloud/passman.git
synced 2024-11-14 11:57:38 +08:00
13 lines
292 B
JavaScript
13 lines
292 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* @ngdoc service
|
|
* @name passmanApp.CacheService
|
|
* @description
|
|
* # CacheService
|
|
* Service in the passmanApp.
|
|
*/
|
|
angular.module('passmanApp')
|
|
.service('CacheService', [function () {
|
|
// AngularJS will instantiate a singleton by calling "new" on this function
|
|
}]);
|