happner
Version:
distributed application engine with evented storage and mesh services
25 lines (16 loc) • 376 B
JavaScript
/**
* Created by Johan on 4/14/2015.
* Updated by S.Bishop 6/1/2015.
*/
var moment = require('moment');
module.exports = function (options) {
return new StopMeshModule1(options);
};
function StopMeshModule1(options) {
this.start = function ($happn) {
}
this.stop = function ($happn, done) {
$happn.log.info('stop method called mod 2');
done();
}
}