const { Client, CommandInteraction } = require("discord.js");
const plexusdjs = require("plexus-djs")
module.exports = {
name: 'rps',
description: 'Just a fun rps using plexus-djs',
options: [{
name: 'user',
type: 'USER',
description: 'user to compete with in rps',
required: true,
}],
run: async (client, interaction, args) => {
plexusdjs.rps(interaction, {
slash: true,
});
},
};