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