TheArtificer/deps.ts

21 lines
786 B
TypeScript
Raw Normal View History

// 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
} 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";
2022-05-04 23:49:06 -07:00
2022-05-27 19:15:27 -07:00
export { LogTypes as LT, initLog, log } from "https://raw.githubusercontent.com/Burn-E99/Log4Deno/V1.1.1/mod.ts";