diff --git a/lib/expressapp.js b/lib/expressapp.js index bb73d52..d276034 100644 --- a/lib/expressapp.js +++ b/lib/expressapp.js @@ -284,6 +284,16 @@ ExpressApp.start = function(opts) { }); }); + router.post('/v1/addresses/scan/', function(req, res) { + getServerWithAuth(req, res, function(server) { + server.startScan(req.body, function(err) { + if (err) return returnError(err, res, req); + res.end(); + }); + }); + }); + + app.use(opts.basePath || '/bws/api', router); return app; };