mirror of
https://github.com/informaticker/discord-jellyfin-bot.git
synced 2024-11-25 11:01:56 +01:00
26 lines
607 B
TypeScript
26 lines
607 B
TypeScript
|
import { TransformPipe } from '@discord-nestjs/common';
|
||
|
|
||
|
import {
|
||
|
Command,
|
||
|
DiscordTransformedCommand,
|
||
|
TransformedCommandExecutionContext,
|
||
|
UsePipes,
|
||
|
} from '@discord-nestjs/core';
|
||
|
import { InteractionReplyOptions } from 'discord.js';
|
||
|
|
||
|
@Command({
|
||
|
name: 'pause',
|
||
|
description: 'Pause or resume the playback of the current track',
|
||
|
})
|
||
|
@UsePipes(TransformPipe)
|
||
|
export class PausePlaybackCommand
|
||
|
implements DiscordTransformedCommand<unknown>
|
||
|
{
|
||
|
handler(
|
||
|
dto: unknown,
|
||
|
executionContext: TransformedCommandExecutionContext<any>,
|
||
|
): InteractionReplyOptions | string {
|
||
|
return 'nice';
|
||
|
}
|
||
|
}
|