Small tweak

This commit is contained in:
2024-01-30 11:59:01 +01:00
parent 3bee261453
commit 499f01e10e
2 changed files with 3 additions and 3 deletions

View File

@@ -1,3 +1,3 @@
import { Bot as Illegitimate } from "utils/Illegitimate" import { Illegitimate } from "utils/Illegitimate"
new Illegitimate().start() new Illegitimate().start()

View File

@@ -13,7 +13,7 @@ if (process.env.NODE_ENV === "dev" && process.env.TYPESCRIPT === "true") {
ft = "js" ft = "js"
} }
class Bot { class Illegitimate {
async start() { async start() {
this.init() this.init()
loadAllEvents(client, ft) loadAllEvents(client, ft)
@@ -49,4 +49,4 @@ class Bot {
} }
} }
export { Bot, client, redis } export { Illegitimate, client, redis }