mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-11-05 12:23:09 +02:00
24 lines
480 B
Plaintext
24 lines
480 B
Plaintext
const Discord = require('discord.js');
|
|
const config = require('../config.json');
|
|
const leeks = require('leeks.js');
|
|
module.exports = {
|
|
name: 'example-command',
|
|
description: 'An example command',
|
|
usage: '[args]',
|
|
aliases: ['none'],
|
|
example: 'example-command',
|
|
args: false,
|
|
cooldown: config.cooldown,
|
|
guildOnly: true,
|
|
execute(message, args) {
|
|
const client = message.client;
|
|
// command starts here
|
|
message.delete();
|
|
|
|
|
|
|
|
|
|
// command ends here
|
|
},
|
|
};
|