added skip

This commit is contained in:
Patryk Koreń
2025-12-29 18:14:59 +01:00
parent 03c2d35bf0
commit ac5f65844d
3 changed files with 42 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ import ping from "./ping"
import play from "./play"
import queue from "./queue"
import resume from "./resume"
import skip from "./skip"
import stop from "./stop"
export const commands: { [key: string]: Command } = {
@@ -16,5 +17,6 @@ export const commands: { [key: string]: Command } = {
resume,
stop,
pause,
skip,
}