UNPKG
qobuz
Version:
latest (1.0.2-alpha)
1.0.2-alpha
1.0.1-alpha
1.0.0-alpha
Qobuz client library for Node.js
github.com/fvilers/qobuz
fvilers/qobuz
qobuz
/
lib
/
endpoints
/
status.js
16 lines
(11 loc)
•
269 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'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
;