Update document.js

Replaced tabs with spaces
This commit is contained in:
Ninjdai 2022-12-16 08:54:38 +01:00 committed by GitHub
parent 3985bc3f44
commit 7abed7993c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,10 +4,10 @@ module.exports = {
data: new SlashCommandBuilder()
.setName('documents')
.setDescription('Afficher des documents')
.addSubcommand(subcommand =>
subcommand
.setName('sanctions')
.setDescription('Afficher les documents des sanctions')),
.addSubcommand(subcommand =>
subcommand
.setName('sanctions')
.setDescription('Afficher les documents des sanctions')),
async execute(interaction) {
switch (interaction.options.getSubcommand()) {
@ -16,7 +16,6 @@ module.exports = {
break;
}
}
};