changes to Eval.ts and add TLS command to index

master
Matthew 2025-02-16 08:42:53 -05:00
parent b786709741
commit aa110f81d1
Signed by: matthew
SSH Key Fingerprint: SHA256:piIXekA9q1p0ZGi4ogFbNY1embip5Ytbi3v8AZ8UYq4
2 changed files with 3 additions and 2 deletions

View File

@ -26,7 +26,7 @@ export default class Eval extends DiscordInteractionCommand {
option.setName("depth").setDescription("The depth of the inspection.").setRequired(false)
);
// this checks against the database and adds all of the partners that are "allowed to perform dev commands"
// this checks against the database and adds all the partners that are "allowed to perform dev commands"
// doing the database check in the initialization prevents us from having to check the database every time this command is ran
PartnerModel.find({ canPerformDevCommands: true }).then((partners) => {
for (const partner of partners) {
@ -68,7 +68,7 @@ export default class Eval extends DiscordInteractionCommand {
evaled = "undefined";
}
} catch (error) {
// @ts-ignore
// @ts-expect-error No throws in this block return anything other than an error.
evaled = error.stack;
}

View File

@ -1,4 +1,5 @@
export { default as Eval } from "./Eval";
export { default as Partner } from "./Partner";
export { default as Ping } from "./Ping";
export { default as TLS } from "./TLS";
export { default as Whois } from "./Whois";