mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-06-05 07:26:47 +00:00
Adds exchange name to account info retrieval
Adds walletRoutes.go Adds method to get all exchange account stuff in go Adds method to get all exchange account stuff in server.js
This commit is contained in:
@@ -24,6 +24,14 @@ app.get('/data/all-enabled-currencies', function (req, res) {
|
||||
})
|
||||
});
|
||||
|
||||
app.get('/data/all-enabled-exchange-account-info', function (req, res) {
|
||||
request({
|
||||
url :'http://localhost:9050/exchanges/enabled/accounts/all'
|
||||
},function(err, resp, body){
|
||||
res.send(body);
|
||||
})
|
||||
});
|
||||
|
||||
app.get('/config/all', function (req, res) {
|
||||
request({
|
||||
url :'http://localhost:9050/config/all'
|
||||
|
||||
Reference in New Issue
Block a user