mirror of
https://github.com/informaticker/discord-jellyfin-bot.git
synced 2024-11-25 19:11:56 +01:00
24 lines
589 B
TypeScript
24 lines
589 B
TypeScript
|
import { TransformPipe } from '@discord-nestjs/common';
|
||
|
|
||
|
import {
|
||
|
Command,
|
||
|
DiscordTransformedCommand,
|
||
|
TransformedCommandExecutionContext,
|
||
|
UsePipes,
|
||
|
} from '@discord-nestjs/core';
|
||
|
import { InteractionReplyOptions } from 'discord.js';
|
||
|
|
||
|
@Command({
|
||
|
name: 'disconnect',
|
||
|
description: 'Join your current voice channel',
|
||
|
})
|
||
|
@UsePipes(TransformPipe)
|
||
|
export class DisconnectCommand implements DiscordTransformedCommand<unknown> {
|
||
|
handler(
|
||
|
dto: unknown,
|
||
|
executionContext: TransformedCommandExecutionContext<any>,
|
||
|
): InteractionReplyOptions | string {
|
||
|
return 'nice';
|
||
|
}
|
||
|
}
|