diff --git a/examples/components/mod.ts b/examples/components/mod.ts index 739bb27..5158730 100644 --- a/examples/components/mod.ts +++ b/examples/components/mod.ts @@ -6,7 +6,7 @@ import { GatewayIntents, InteractionResponseTypes, Session, -} from "https://x.nest.land/biscuit/mod.ts"; +} from "https://deno.land/x/biscuit/mod.ts?code"; const token = Deno.env.get("TOKEN") ?? Deno.args[0]; diff --git a/examples/hello-bun/index.js b/examples/hello-bun/index.js index 8922be1..520ddc1 100644 --- a/examples/hello-bun/index.js +++ b/examples/hello-bun/index.js @@ -6,7 +6,7 @@ const { GatewayIntents, Session } = require("../mod.ts"); // if it didn't worked use: -// const { GatewayIntents, Session } = require("@oasisjs/biscuit"); +// import { GatewayIntents, Session } from "@oasisjs/biscuit"; const token = process.env.TOKEN; const intents = GatewayIntents.MessageContent | GatewayIntents.Guilds | GatewayIntents.GuildMessages; diff --git a/examples/hello-deno/mod.ts b/examples/hello-deno/mod.ts index 38b628e..a2a721e 100644 --- a/examples/hello-deno/mod.ts +++ b/examples/hello-deno/mod.ts @@ -5,7 +5,7 @@ import "https://deno.land/std@0.146.0/dotenv/load.ts"; // Session to create a new bot (and intents) -import { GatewayIntents, Session } from "https://x.nest.land/biscuit/mod.ts"; +import { GatewayIntents, Session } from "https://deno.land/x/biscuit/mod.ts"; const token = Deno.env.get("TOKEN") ?? Deno.args[0]; diff --git a/examples/slash-commands/mod.ts b/examples/slash-commands/mod.ts index c5b08c5..a7d6e0a 100644 --- a/examples/slash-commands/mod.ts +++ b/examples/slash-commands/mod.ts @@ -4,7 +4,7 @@ import { GatewayIntents, InteractionResponseTypes, Session, -} from "https://x.nest.land/biscuit/mod.ts"; +} from "https://deno.land/x/biscuit/mod.ts"; const token = Deno.env.get("TOKEN") ?? Deno.args[0];