rewrite na js bo rust jest zjebany

This commit is contained in:
Patryk Koreń
2025-12-26 18:31:14 +01:00
parent 7b72b15caa
commit 375779de9c
23 changed files with 1259 additions and 3827 deletions

19
src/commands/help.ts Normal file
View File

@@ -0,0 +1,19 @@
import { CacheType, ChatInputCommandInteraction, SlashCommandBuilder } from 'discord.js';
const name = "help"
function register() {
return new SlashCommandBuilder()
.setName(name)
.setDescription('Pomoc')
}
async function execute(interaction: ChatInputCommandInteraction<CacheType>) {
await interaction.reply('Jak ci się kurwa nie podoba to tutaj proszę o pull requesty https://gitea.papryk.com/Papryk/dj-spangebob');
}
export default {
name,
register,
execute
}