UNPKG

qobuz

Version:

Qobuz client library for Node.js

16 lines (11 loc) 269 B
'use strict'; const Status = function (client) { if (!client) { throw new Error('Client is required.'); } this.client = client; }; Status.prototype.test = function () { return this.client.get('status/test'); }, module.exports = Status;