From 74cafd40b2839a8d10130c100961d1d35e99b6bf Mon Sep 17 00:00:00 2001 From: pinpong Date: Sat, 20 Jul 2024 17:59:30 +0200 Subject: [PATCH] updated Readme.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9a33c5a..8e8e9b0 100644 --- a/README.md +++ b/README.md @@ -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: '', + gekkoId: '', + apiKey: '', }); try { @@ -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: '', + username: '', + password: '', }); try {