mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-26 08:38:22 +08:00
25 lines
491 B
JavaScript
25 lines
491 B
JavaScript
|
/* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */
|
||
|
|
||
|
(function (module) {
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
var
|
||
|
_ = require('./External/underscore.js'),
|
||
|
AbstractCacheStorage = require('./Storages/AbstractCacheStorage.js')
|
||
|
;
|
||
|
|
||
|
/**
|
||
|
* @constructor
|
||
|
* @extends AbstractCacheStorage
|
||
|
*/
|
||
|
function AdminCacheStorage()
|
||
|
{
|
||
|
AbstractCacheStorage.call(this);
|
||
|
}
|
||
|
|
||
|
_.extend(AdminCacheStorage.prototype, AbstractCacheStorage.prototype);
|
||
|
|
||
|
module.exports = AdminCacheStorage;
|
||
|
|
||
|
}(module));
|