lightings 5be7d0e305 ...
2023-07-06 11:59:39 +08:00

17 lines
328 B
JavaScript

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 });
}