We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2131f81 commit 5384d6aCopy full SHA for 5384d6a
README.md
@@ -25,10 +25,10 @@ import GenericClient, {
25
// ...
26
27
const response = await GenericClient.get("https://community.mattermost.com");
28
-const { client: apiClient, created } = await getOrCreateAPIClient(
+const { client: apiClient, created: apiCreated } = await getOrCreateAPIClient(
29
"https://community.mattermost.com"
30
);
31
-const { client: wsClient, created } = await getOrCreateWebSocketClient(
+const { client: wsClient, created: wsCreated } = await getOrCreateWebSocketClient(
32
"wss://community.mattermost.com"
33
34
```
0 commit comments