diff --git a/README.md b/README.md index 7e5281eeb..deb53f489 100644 --- a/README.md +++ b/README.md @@ -100,13 +100,12 @@ Have your cache setup in any way you like. Redis, PGSQL or any cache layer you w Here is a minimal example to get started with: ```typescript -import { createBot, Intents, startBot } from "https://deno.land/x/discordeno@13.0.0-rc18/mod.ts"; -import { enableCachePlugin, enableCacheSweepers } from "https://deno.land/x/discordeno_cache_plugin@0.0.18/mod.ts"; +import { createBot, Intents, startBot } from "https://deno.land/x/discordeno@13.0.0/mod.ts"; +import { enableCachePlugin, enableCacheSweepers } from "https://deno.land/x/discordeno@13.0.0/plugins/cache/mod.ts"; const baseBot = createBot({ token: Deno.env.get("DISCORD_TOKEN"), intents: Intents.Guilds | Intents.GuildMessages, - botId: Deno.env.get("BOT_ID"), events: { ready() { console.log("Successfully connected to gateway");