16 lines
449 B
JavaScript
16 lines
449 B
JavaScript
test = ep_client_require("/plugins/ep_fintest/test.js");
|
|
console.log("FOOO:", test.foo);
|
|
|
|
exports.somehook = function (hook_name, args, cb) {
|
|
return cb(["otherpart:somehook was here"]);
|
|
}
|
|
|
|
exports.morehook = function (hook_name, args, cb) {
|
|
return cb(["otherpart:morehook was here"]);
|
|
}
|
|
|
|
exports.expressServer = function (hook_name, args, cb) {
|
|
args.app.get('/otherpart', function(req, res) {
|
|
res.send("<em>Abra cadabra</em>");
|
|
});
|
|
}
|