mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 20:24:51 +08:00
13 lines
271 B
JavaScript
13 lines
271 B
JavaScript
|
/* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */
|
||
|
|
||
|
/**
|
||
|
* @constructor
|
||
|
* @extends AbstractCacheStorage
|
||
|
*/
|
||
|
function AdminCacheStorage()
|
||
|
{
|
||
|
AbstractCacheStorage.call(this);
|
||
|
}
|
||
|
|
||
|
_.extend(AdminCacheStorage.prototype, AbstractCacheStorage.prototype);
|