UNPKG

@useems/octadesk-api

Version:

Node proxy for Octadesk API - https://api.octadesk.services

16 lines (14 loc) 290 B
module.exports = class Company { constructor(client) { this.client = client this.baseResource = "/company/" } /** * GET / from Company API * */ async get() { let response = await this.client.get(this.baseResource) return response.data } }