snappymail/dev/Knoin/KnoinAbstractBoot.js

21 lines
287 B
JavaScript
Raw Normal View History

2014-08-20 23:03:12 +08:00
/* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */
2014-08-25 15:10:51 +08:00
'use strict';
2014-08-20 23:03:12 +08:00
(function (module) {
/**
* @constructor
*/
function KnoinAbstractBoot()
{
}
KnoinAbstractBoot.prototype.bootstart = function ()
{
};
module.exports = KnoinAbstractBoot;
}(module));