snappymail/dev/Knoin/AbstractBoot.js

21 lines
188 B
JavaScript
Raw Normal View History

(function () {
'use strict';
/**
* @constructor
*/
function AbstractBoot()
{
}
AbstractBoot.prototype.bootstart = function ()
{
};
module.exports = AbstractBoot;
}());