Skip to content

Commit 45ae96c

Browse files
committed
chore: should not be part of the curren active commands
1 parent d302932 commit 45ae96c

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

src/commands/index.ts

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,12 @@ import { docsCommands } from './docs/index.js';
22
import { guidesCommand } from './guides/index.js';
33
import cacheMessages from './moderation/cache-messages.js';
44
import { repelCommand } from './moderation/repel.js';
5-
import { onboardingCommand } from './onboarding/index.js';
65
import { pingCommand } from './ping.js';
76
import { tipsCommands } from './tips/index.js';
87
import type { Command } from './types.js';
98

109
export const commands = new Map<string, Command>(
11-
[
12-
pingCommand,
13-
guidesCommand,
14-
docsCommands,
15-
tipsCommands,
16-
repelCommand,
17-
cacheMessages,
18-
onboardingCommand,
19-
]
10+
[pingCommand, guidesCommand, docsCommands, tipsCommands, repelCommand, cacheMessages]
2011
.flat()
2112
.map((cmd) => [cmd.data.name, cmd])
2213
);

0 commit comments

Comments
 (0)