var Code = require("shared/code"); var dispatcher = require("../../../util/dispatcher"); module.exports = function (app) { return new Handler(app); } var Handler = function (app) { this.app = app; } var handler = Handler.prototype; handler.push = async function (msg, session, next) { next(null, { code: Code.OK }); }