mirror of
https://github.com/ION606/selmerBot.git
synced 2026-05-14 21:26:54 +00:00
8 lines
275 B
JavaScript
8 lines
275 B
JavaScript
module.exports = {
|
|
name: 'Init',
|
|
async execute(bot, message, args, command, GuildModel, Discord, connect) {
|
|
if (!message.guild) { return console.log("NO GUILD"); }
|
|
const doc = new GuildModel( {id: message.guild.id });
|
|
await doc.save();
|
|
}
|
|
} |