mirror of
https://github.com/arthur-pbty/gestion.git
synced 2026-06-05 13:51:57 +02:00
18 lines
520 B
JavaScript
18 lines
520 B
JavaScript
const { MessageEmbed } = require('discord.js');
|
|
const db = require('quick.db');
|
|
const GestionDb = new db.table("gestion");
|
|
|
|
module.exports = {
|
|
name: 'clearowner',
|
|
aliases: ['clearowners'],
|
|
description: 'Supprimer tout les owners',
|
|
emote: '👑',
|
|
utilisation: 'clearowner',
|
|
category: 'buyer',
|
|
|
|
async execute(message, args, client) {
|
|
const botId = client.user.id;
|
|
GestionDb.set(`${botId}.owners`, {});
|
|
message.reply("Toutes les owner ony etaient supprimer")
|
|
},
|
|
}; |