Files
RandomMemerBot/client/handlers/joinChannel.ts
2023-10-21 05:09:38 +02:00

11 lines
291 B
TypeScript

import { joinRandomChannel } from "../../bot";
import express from 'express';
/**
* Joins a random channel and plays a random sound file.
* @returns void
*/
export function JoinChannel(response: express.Response) {
joinRandomChannel();
response.send('Joining random channel.');
}