UNPKG
payture
Version:
latest (1.2.1)
1.2.1
1.2.0
1.1.0
1.0.1
1.0.0
Payture API for NodeJS
github.com/cderche/payture-node
cderche/payture-node
payture
/
index.js
11 lines
(7 loc)
•
185 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
var
Api
=
require
(
'./api'
)
var
Wallet
=
require
(
'./wallet'
)
var
API
=
null
module
.
exports
=
function
(
host
) {
API
=
new
Api
(host)
this
.
wallet
=
new
Wallet
(
API
) }