Skip to content

Commit 13a6de5

Browse files
committed
feat: plugins api
1 parent 662fba2 commit 13a6de5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+629
-162
lines changed

apps/test-bot/commandkit.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
import { defineConfig } from 'commandkit';
22

3-
export default defineConfig({
4-
main: 'index.js',
5-
src: 'src',
6-
});
3+
export default defineConfig({});

apps/test-bot/src/app.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { Client } from 'discord.js';
2+
3+
process.loadEnvFile();
4+
5+
const client = new Client({
6+
intents: ['Guilds', 'GuildMembers', 'GuildMessages', 'MessageContent'],
7+
});
8+
9+
export default client;
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)