This commit is contained in:
John Shaver 2019-09-04 01:13:17 -07:00
parent ae4f33ac50
commit 00ef080a1b
1 ha cambiato i file con 1 aggiunte e 0 eliminazioni

Vedi File

@ -9,6 +9,7 @@ exports.register = function() {
outbound = this.haraka_require('./outbound');
this.register_hook('hook_init_http', function(next, server) {
server.http.app.use('/webSend', setupRoutes(server.http.express.Router()));
server.http.app.get('/test', (req, res) => res.send("HELLO!"));
next();
});
}