Formatting changes + Update version to 1.0.0

This commit is contained in:
2025-05-11 22:49:14 -05:00
parent e728666332
commit 27c72c53eb
12 changed files with 3372 additions and 149 deletions

View File

@@ -1,10 +1,10 @@
const { SlashCommandBuilder } = require('discord.js');
const { SlashCommandBuilder } = require("discord.js");
module.exports = {
data: new SlashCommandBuilder()
.setName('pi')
.setDescription('Make O-Bot say something'),
.setName("pi")
.setDescription("Make O-Bot say something"),
async execute(interaction) {
await interaction.reply('Pipi? Pipi-pipipipipi!');
await interaction.reply("Pipi? Pipi-pipipipipi!");
},
};