Begin rewrite
This commit is contained in:
parent
f38ae161f6
commit
460a7ed557
|
@ -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';
|
File diff suppressed because it is too large
Load Diff
6
deps.ts
6
deps.ts
|
@ -20,7 +20,7 @@ export {
|
||||||
sendMessage,
|
sendMessage,
|
||||||
startBot,
|
startBot,
|
||||||
structures,
|
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 {
|
export type {
|
||||||
ActionRow,
|
ActionRow,
|
||||||
|
@ -34,8 +34,8 @@ export type {
|
||||||
Embed,
|
Embed,
|
||||||
EmbedField,
|
EmbedField,
|
||||||
Interaction,
|
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';
|
export { initLog, log, LogTypes as LT } from 'https://raw.githubusercontent.com/Burn-E99/Log4Deno/V1.1.0/mod.ts';
|
||||||
|
|
4
flags.ts
4
flags.ts
|
@ -2,5 +2,5 @@
|
||||||
export const DEVMODE = false;
|
export const DEVMODE = false;
|
||||||
// DEBUG is used to toggle the cmdPrompt
|
// DEBUG is used to toggle the cmdPrompt
|
||||||
export const DEBUG = false;
|
export const DEBUG = false;
|
||||||
// LOCALMODE is used to run a differnt bot token for local testing
|
// LOCALMODE is used to run a different bot token for local testing
|
||||||
export const LOCALMODE = false;
|
export const LOCALMODE = true;
|
||||||
|
|
Loading…
Reference in New Issue