Prettier format pending files
This commit is contained in:
parent
9c0a12eafa
commit
e3fd976077
1 changed files with 6 additions and 2 deletions
|
|
@ -156,7 +156,9 @@ async function registerDiscordCommands() {
|
|||
process.env.DISCORD_BOT_TOKEN,
|
||||
);
|
||||
|
||||
console.log(`📝 Registering ${COMMANDS_TO_REGISTER.length} slash commands...`);
|
||||
console.log(
|
||||
`📝 Registering ${COMMANDS_TO_REGISTER.length} slash commands...`,
|
||||
);
|
||||
|
||||
try {
|
||||
// Try bulk update first
|
||||
|
|
@ -283,7 +285,9 @@ http
|
|||
})
|
||||
.listen(healthPort, () => {
|
||||
console.log(`<EFBFBD><EFBFBD><EFBFBD><EFBFBD> Health check server running on port ${healthPort}`);
|
||||
console.log(`📝 Register commands at: POST http://localhost:${healthPort}/register-commands`);
|
||||
console.log(
|
||||
`📝 Register commands at: POST http://localhost:${healthPort}/register-commands`,
|
||||
);
|
||||
});
|
||||
|
||||
client.login(process.env.DISCORD_BOT_TOKEN);
|
||||
|
|
|
|||
Loading…
Reference in a new issue