Skip to content

Commit

Permalink
updated Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
pinpong committed Jul 20, 2024
1 parent d296bda commit 74cafd4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ This is a very simple example. This creates a remote client and retrieves the de
import { RemoteClient } from 'mygekko-client-library';

const client = new RemoteClient({
username: 'test@test.com',
gekkoId: 'XXXX-XXXX-XXXX-XXXX',
apiKey: 'damnSecure',
username: '<your-mygekko-user-email>',
gekkoId: '<your-gekko-id>',
apiKey: '<your-mygekko-api-remote-key>',
});

try {
Expand All @@ -50,9 +50,9 @@ And this creates a local client and retrieves the details of all blinds:
import { LocalClient } from 'mygekko-client-library';

const client = new LocalClient({
ip: '127.0.1',
username: 'user',
password: 'damnSecure',
ip: '<your-mygekko-ip-address>',
username: '<your-mygekko-username>',
password: '<your-mygekko-password>',
});

try {
Expand Down

0 comments on commit 74cafd4

Please sign in to comment.