mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-22 00:16:15 -04:00
6 lines
157 B
JavaScript
6 lines
157 B
JavaScript
![]() |
exports.expressServer = function (hook_name, args, cb) {
|
||
|
args.app.get('/testxx', function(req, res) {
|
||
|
res.send("<em>Testing testing</em>");
|
||
|
});
|
||
|
}
|