Replaced clang format with prettuier (sadly)

This commit is contained in:
2023-12-28 16:47:52 +01:00
parent ca5bbd0b81
commit 117140fe9d
99 changed files with 13519 additions and 12011 deletions

View File

@@ -16,7 +16,9 @@ const event: Event = {
const embedColor = Number(color.replace("#", "0x"))
if (!channel) {
console.log("[ERROR] Could not find channel used for online message.")
console.log(
"[ERROR] Could not find channel used for online message.",
)
return
}
@@ -26,12 +28,14 @@ const event: Event = {
}
channel.send({
embeds: [{
description: "Bot is online!",
color: embedColor
}]
embeds: [
{
description: "Bot is online!",
color: embedColor,
},
],
})
}
},
}
export = event
export = event