bluebot
Version:
A bitcoin trading bot for auto trading at various exchanges
26 lines (21 loc) • 481 B
JavaScript
const cache = require('../state/cache');
const manager = cache.get('apiKeyManager');
module.exports = {
get: function *() {
this.body = manager.get();
},
add: function *() {
const content = this.request.body;
manager.add(content.exchange, content.values);
this.body = {
status: 'ok'
};
},
remove: function *() {
const exchange = this.request.body.exchange;
manager.remove(exchange);
this.body = {
status: 'ok'
};
}
}