mirror of
https://github.com/gizmo4487/O-Bot.git
synced 2025-05-30 20:22:31 -05:00
11 lines
262 B
JavaScript
11 lines
262 B
JavaScript
const { SlashCommandBuilder } = require('discord.js');
|
|
|
|
module.exports = {
|
|
data: new SlashCommandBuilder()
|
|
.setName('pi')
|
|
.setDescription('Make O-Bot say something'),
|
|
async execute(interaction) {
|
|
await interaction.reply('Pipi? Pipi-pipipipipi!');
|
|
},
|
|
};
|