mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-04 05:52:44 +08:00
22 lines
289 B
JavaScript
22 lines
289 B
JavaScript
|
/* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */
|
||
|
|
||
|
(function (module) {
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
/**
|
||
|
* @constructor
|
||
|
*/
|
||
|
function KnoinAbstractBoot()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
KnoinAbstractBoot.prototype.bootstart = function ()
|
||
|
{
|
||
|
|
||
|
};
|
||
|
|
||
|
module.exports = KnoinAbstractBoot;
|
||
|
|
||
|
}(module));
|