diff --git a/config.example.ts b/config.example.ts index 7d21b05..ff22595 100644 --- a/config.example.ts +++ b/config.example.ts @@ -1,6 +1,6 @@ export const config = { 'name': 'Sweeper Bot', // Name of the bot - 'version': '0.2.1', // Version of the bot + 'version': '0.2.2', // Version of the bot 'token': 'the_bot_token', // Discord API Token for this bot 'localtoken': 'local_testing_token', // Discord API Token for a secondary OPTIONAL testing bot, THIS MUST BE DIFFERENT FROM "token" 'prefix': 's!', // Prefix for all commands diff --git a/src/commands/handleMentions.ts b/src/commands/handleMentions.ts index e1171ed..66b7639 100644 --- a/src/commands/handleMentions.ts +++ b/src/commands/handleMentions.ts @@ -1,6 +1,6 @@ import config from '../../config.ts'; -// import { dbClient, queries } from '../db.ts'; import { + // Discordeno deps Bot, // Log4Deno deps log, diff --git a/src/commands/help.ts b/src/commands/help.ts index 01eb30d..15face9 100644 --- a/src/commands/help.ts +++ b/src/commands/help.ts @@ -1,8 +1,7 @@ import config from '../../config.ts'; -// import { dbClient, queries } from '../db.ts'; import { - Bot, // Discordeno deps + Bot, Message, } from '../../deps.ts'; import { infoColor2 } from '../commandUtils.ts'; diff --git a/src/commands/info.ts b/src/commands/info.ts index 8e5f437..b6783c5 100644 --- a/src/commands/info.ts +++ b/src/commands/info.ts @@ -1,8 +1,7 @@ import config from '../../config.ts'; -// import { dbClient, queries } from '../db.ts'; import { - Bot, // Discordeno deps + Bot, Message, } from '../../deps.ts'; import { infoColor2 } from '../commandUtils.ts'; diff --git a/src/commands/ping.ts b/src/commands/ping.ts index 357495b..00e26f0 100644 --- a/src/commands/ping.ts +++ b/src/commands/ping.ts @@ -1,7 +1,6 @@ -// import { dbClient, queries } from '../db.ts'; import { - Bot, // Discordeno deps + Bot, Message, } from '../../deps.ts'; import { generatePing } from '../commandUtils.ts'; diff --git a/src/commands/report.ts b/src/commands/report.ts index c8ed7bb..5ffdf0c 100644 --- a/src/commands/report.ts +++ b/src/commands/report.ts @@ -1,10 +1,8 @@ import config from '../../config.ts'; -// import { dbClient, queries } from '../db.ts'; import { + // Discordeno deps Bot, - // Discordeno deps Message, - // Discordeno deps sendMessage, } from '../../deps.ts'; import { failColor, generateReport, successColor } from '../commandUtils.ts'; diff --git a/src/commands/sendMessage.ts b/src/commands/sendMessage.ts index 202f1bd..8c1d7cd 100644 --- a/src/commands/sendMessage.ts +++ b/src/commands/sendMessage.ts @@ -1,9 +1,7 @@ -// import { dbClient, queries } from '../db.ts'; import { + // Discordeno deps Bot, - // Discordeno deps Message, - // Discordeno deps sendMessage, } from '../../deps.ts'; import { failColor, successColor } from '../commandUtils.ts'; diff --git a/src/commands/version.ts b/src/commands/version.ts index ed9f724..1e89a10 100644 --- a/src/commands/version.ts +++ b/src/commands/version.ts @@ -1,8 +1,7 @@ import config from '../../config.ts'; -// import { dbClient, queries } from '../db.ts'; import { - Bot, // Discordeno deps + Bot, Message, } from '../../deps.ts'; import { infoColor1 } from '../commandUtils.ts';