mirror of
https://github.com/Burn-E99/GroupUp.git
synced 2026-06-04 00:43:49 -04:00
Begin rewrite
This commit is contained in:
41
_OLD/deps.ts
Normal file
41
_OLD/deps.ts
Normal 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
1246
_OLD/mod.ts
Normal file
File diff suppressed because it is too large
Load Diff
0
src/mod.d.ts → _OLD/src/mod.d.ts
vendored
0
src/mod.d.ts → _OLD/src/mod.d.ts
vendored
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;
|
||||||
|
|||||||
Reference in New Issue
Block a user