mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 03:12:42 +01:00
5 lines
157 B
JavaScript
5 lines
157 B
JavaScript
exports.expressServer = function (hook_name, args, cb) {
|
|
args.app.get('/testxx', function(req, res) {
|
|
res.send("<em>Testing testing</em>");
|
|
});
|
|
}
|