refactor(commands/utils): add override for skip

This commit is contained in:
Ryan 2025-02-03 16:40:01 -05:00
parent a1d63f1bb1
commit 81e30c7e70
Signed by: ErrorNoInternet
GPG Key ID: 2486BFB7B1E6A4A3

View File

@ -32,6 +32,8 @@ class Command(Enum):
def match_token(token: str) -> list[Command]:
if token.lower() == "r":
return [Command.RELOAD]
elif token.lower() == "s":
return [Command.SKIP]
if exact_match := list(
filter(