© 2026 Hedgehog Software, LLC
const { SlashCommandBuilder, EmbedBuilder } = require("discord.js"); const { seniorGuild } = require('../../configs/config.json'); const { bot } = require('../../configs/config.json'); const id = seniorGuild.ID; const logs = seniorGuild.commandLogs; module.exports = { data: new SlashCommandBuilder() .setName('ping') .setDescription('A Command to check if the bot is still online.'), async execute(interaction) { await interaction.reply({content: 'pong!', ephemeral: true}); }, };
const guild = await interaction.client.etc..