fix: use logger everywhere?
Code Analysis / SonarQube (push) Failing after 15s
Node.js CI / Lint and Test (push) Successful in 42s

This commit is contained in:
2025-07-07 16:38:36 -07:00
parent 9ea5a1f6d1
commit c47c46e69a
11 changed files with 30 additions and 61 deletions
+1 -2
View File
@@ -1,5 +1,5 @@
import { PrismaClient, configs } from "@prisma/client";
import { Client, WebhookClient } from "discord.js";
import { Client } from "discord.js";
import { Command } from "./Command";
import { Context } from "./Context";
@@ -7,7 +7,6 @@ import { Context } from "./Context";
export interface ExtendedClient extends Client {
env: {
token: string;
debugHook: WebhookClient;
mongoUri: string;
devMode: boolean;
};