etherpad-lite/node/test.js

6 lines
157 B
JavaScript
Raw Normal View History

2012-02-24 20:29:14 +01:00
exports.expressServer = function (hook_name, args, cb) {
args.app.get('/testxx', function(req, res) {
res.send("<em>Testing testing</em>");
});
}