From 10b2fcdbcf300d86ec680f5370912a9ea1f606eb Mon Sep 17 00:00:00 2001 From: Paul Date: Thu, 16 Sep 2021 15:33:56 +0100 Subject: [PATCH] Remove API_URL from README since it confuses people. --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index c80d8859..3e85e9a1 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,7 @@ ## Example Usage ```typescript -let client = new Client({ - apiURL: process.env.API_URL -}); +let client = new Client(); client.on('ready', async () => console.info(`Logged in as ${client.user!.username}!`)