Skip to content

Commit

Permalink
Fix Tutorials
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsmedley committed Dec 21, 2023
1 parent f45d906 commit dfb884c
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tutorials/quickstart-bucket.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
**node.js**
````js
// Import Classes
import {BucketManager} from 'filebase-sdk'
import {BucketManager} from 'filebase-sdk';

// Initialize BucketManager
const bucketManager = new BucketManager(S3_KEY, S3_SECRET);
Expand Down
3 changes: 3 additions & 0 deletions tutorials/quickstart-gateway.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
**node.js**
````js
// Import Classes
import {GatewayManager} from 'filebase-sdk';

// Initialize GatewayManager
const gatewayManager = new GatewayManager(S3_KEY, S3_SECRET);

Expand Down
3 changes: 3 additions & 0 deletions tutorials/quickstart-name.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
**node.js**
````js
// Import Classes
import {NameManager} from 'filebase-sdk';

// Initialize NameManager
const nameManager = new NameManager(S3_KEY, S3_SECRET);

Expand Down
2 changes: 1 addition & 1 deletion tutorials/quickstart-object.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
**node.js**
````js
// Import Classes
import {ObjectManager} from 'filebase-sdk'
import {ObjectManager} from 'filebase-sdk';

// Initialize ObjectManager
const bucketName = `create-object-[random string]`;
Expand Down
3 changes: 3 additions & 0 deletions tutorials/quickstart-pin.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
**node.js**
````js
// Import Classes
import {PinManager} from 'filebase-sdk';

// Initialize PinManager
const pinManager = new PinManager(S3_KEY, S3_SECRET, {
bucket: bucketName,
Expand Down

0 comments on commit dfb884c

Please sign in to comment.