mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-06 14:58:19 +08:00
21 lines
188 B
JavaScript
21 lines
188 B
JavaScript
|
|
||
|
(function () {
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
/**
|
||
|
* @constructor
|
||
|
*/
|
||
|
function AbstractBoot()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
AbstractBoot.prototype.bootstart = function ()
|
||
|
{
|
||
|
|
||
|
};
|
||
|
|
||
|
module.exports = AbstractBoot;
|
||
|
|
||
|
}());
|