spare-api
Version:
spare-Api ======
30 lines (24 loc) • 621 B
JavaScript
const Base = require('./base');
const Message = require('../message');
const { SERVICE } = require('../constants');
class Harvester extends Base {
get destination() {
return SERVICE.harvester;
}
async getPlots() {
const res = await this.connection.send(new Message({
command: 'get_plots',
origin: this.origin,
destination: this.destination,
}));
return res.data;
}
async refreshPlots() {
await this.connection.send(new Message({
command: 'refresh_plots',
origin: this.origin,
destination: this.destination,
}));
}
}
module.exports = Harvester;