snappymail/dev/Knoin/KnoinAbstractBoot.js

21 lines
224 B
JavaScript
Raw Normal View History

2014-08-20 23:03:12 +08:00
(function (module) {
2014-08-25 23:49:01 +08:00
'use strict';
2014-08-20 23:03:12 +08:00
/**
* @constructor
*/
function KnoinAbstractBoot()
{
}
KnoinAbstractBoot.prototype.bootstart = function ()
{
};
module.exports = KnoinAbstractBoot;
2014-08-25 23:49:01 +08:00
}(module, require));