Begin rewrite

This commit is contained in:
Ean Milligan (Bastion) 2023-01-09 21:26:41 -05:00
parent f38ae161f6
commit 460a7ed557
13 changed files with 1292 additions and 1251 deletions

41
_OLD/deps.ts Normal file
View File

@ -0,0 +1,41 @@
// All external dependancies are to be loaded here to make updating dependancy versions much easier
export {
botId,
cache,
cacheHandlers,
deleteMessage,
DiscordActivityTypes,
DiscordButtonStyles,
DiscordInteractionResponseTypes,
DiscordInteractionTypes,
editBotNickname,
editBotStatus,
getGuild,
getMessage,
getUser,
hasGuildPermissions,
Intents,
sendDirectMessage,
sendInteractionResponse,
sendMessage,
startBot,
structures,
} from 'https://deno.land/x/discordeno@12.0.1/mod.ts';
export type {
ActionRow,
ButtonComponent,
ButtonData,
CreateMessage,
DebugArg,
DiscordenoGuild,
DiscordenoMember,
DiscordenoMessage,
Embed,
EmbedField,
Interaction,
} from 'https://deno.land/x/discordeno@12.0.1/mod.ts';
export { Client } from 'https://deno.land/x/mysql@v2.10.1/mod.ts';
export { initLog, log, LogTypes as LT } from 'https://raw.githubusercontent.com/Burn-E99/Log4Deno/V1.1.0/mod.ts';

1246
_OLD/mod.ts Normal file

File diff suppressed because it is too large Load Diff

View File

View File

@ -20,7 +20,7 @@ export {
sendMessage,
startBot,
structures,
} from 'https://deno.land/x/discordeno@12.0.1/mod.ts';
} from 'https://deno.land/x/discordeno@17.0.1/mod.ts';
export type {
ActionRow,
@ -34,8 +34,8 @@ export type {
Embed,
EmbedField,
Interaction,
} from 'https://deno.land/x/discordeno@12.0.1/mod.ts';
} from 'https://deno.land/x/discordeno@17.0.1/mod.ts';
export { Client } from 'https://deno.land/x/mysql@v2.10.1/mod.ts';
export { Client } from 'https://deno.land/x/mysql@v2.11.0/mod.ts';
export { initLog, log, LogTypes as LT } from 'https://raw.githubusercontent.com/Burn-E99/Log4Deno/V1.1.0/mod.ts';

View File

@ -2,5 +2,5 @@
export const DEVMODE = false;
// DEBUG is used to toggle the cmdPrompt
export const DEBUG = false;
// LOCALMODE is used to run a differnt bot token for local testing
export const LOCALMODE = false;
// LOCALMODE is used to run a different bot token for local testing
export const LOCALMODE = true;

1246
mod.ts

File diff suppressed because it is too large Load Diff