Skip to content

Commit

Permalink
Add missing return types
Browse files Browse the repository at this point in the history
  • Loading branch information
JstnMcBrd committed Aug 9, 2024
1 parent aaca959 commit 8e69314
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deployCommands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { getCommandHandlers } from './commands/index.js';
import { getToken, load as loadEnv } from './memory/env.js';
import { debug, error, info } from './logger.js';

async function deployCommands(c: Client<true>) {
async function deployCommands(c: Client<true>): Promise<void> {
debug(`\tUser: ${c.user.username} (${c.user.id})`);

info('Deploying commands...');
Expand Down

0 comments on commit 8e69314

Please sign in to comment.