aboutsummaryrefslogtreecommitdiff
path: root/bot/src/events/ThreadCreate.js
blob: 61cb21728318a0d1795163f35ae0ae082cd4600e (plain) (blame)
1
2
3
4
5
6
7
8
import { Events } from 'discord.js';

export default {
    name: Events.ThreadCreate,
    async execute(thread) {
        await thread.join(thread.id);
    }
};