UNPKG
@isaac-platform/isaac-integration-sdk
Version:
latest (0.0.8)
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.2
A Typescript SDK for integrating with ISAAC
isaacplatform.com
@isaac-platform/isaac-integration-sdk
/
objects
/
bucket.js
12 lines
(11 loc)
•
268 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
class
bucket
{
constructor
(
connection
) {
this
.
isaacConn
= connection; }
getBuckets
(
) {
return
this
.
isaacConn
.
getRequest
(
`objects`
); }
getBucket
(
bucket
) {
return
this
.
isaacConn
.
getRequest
(
`objects/
${bucket}
`
); } }