21 lines
797 B
TypeScript
21 lines
797 B
TypeScript
// All external dependancies are to be loaded here to make updating dependancy versions much easier
|
|
export {
|
|
startBot, editBotStatus, editBotNickname,
|
|
Intents, DiscordActivityTypes,
|
|
sendMessage, sendDirectMessage,
|
|
cache, cacheHandlers, botId,
|
|
hasGuildPermissions
|
|
} from "https://deno.land/x/discordeno@12.0.1/mod.ts";
|
|
|
|
export type {
|
|
DiscordenoMessage, DiscordenoGuild, CreateMessage, EmbedField
|
|
} from "https://deno.land/x/discordeno@12.0.1/mod.ts";
|
|
|
|
export { Client } from "https://deno.land/x/mysql@v2.10.2/mod.ts";
|
|
|
|
export { Status, STATUS_TEXT } from "https://deno.land/std@0.137.0/http/http_status.ts";
|
|
|
|
export { nanoid } from "https://deno.land/x/nanoid@v3.0.0/mod.ts";
|
|
|
|
export { LogTypes as LT, initLog, log } from "https://raw.githubusercontent.com/Burn-E99/Log4Deno/V1.1.1/mod.ts";
|