added rzeczy

This commit is contained in:
Patryk Koreń
2025-12-26 20:45:38 +01:00
parent 375779de9c
commit b551cce62a
14 changed files with 326 additions and 91 deletions

View File

@@ -1,8 +1,20 @@
import forceplay from "./forceplay"
import help from "./help"
import pause from "./pause"
import ping from "./ping"
import play from "./play"
import queue from "./queue"
import resume from "./resume"
import stop from "./stop"
export const commands: {[key: string]: Command} = {
export const commands: { [key: string]: Command } = {
ping,
play,
forceplay,
queue,
help,
resume,
stop,
pause,
}