UNPKG
@xompass/pkgcloud
Version:
latest (2.4.5)
2.4.5
2.4.4
2.4.3
2.4.2
2.4.1
2.4.0
2.3.2
2.3.1
2.3.0
A provider agnostic cloud library for Node.js
github.com/xompass/pkgcloud
xompass/pkgcloud
@xompass/pkgcloud
/
lib
/
pkgcloud
/
oneandone
/
blockstorage
/
index.js
10 lines
(8 loc)
•
240 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * Created by Ali Bazlamit on 8/28/2017. */
exports
.
Client
=
require
(
'./client'
).
Client
;
exports
.
Snapshot
=
require
(
'./snapshot'
).
Snapshot
;
exports
.
createClient
=
function
(
options
) {
return
new
exports
.
Client
(options); };