UNPKG
kickbox
Version:
latest (2.0.4)
2.0.4
2.0.1
2.0.0
1.0.5
1.0.1
Official kickbox API library client for node.js
kickbox.com
kickboxio/kickbox-node
kickbox
/
lib
/
index.js
12 lines
(9 loc)
•
239 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
var
Client
=
require
(
'./kickbox/client'
);
// Export module
var
kickbox =
module
.
exports
;
/** * This file contains the global namespace for the module */
kickbox.
client
=
function
(
auth, options
) {
return
new
Client
(auth, options); };