Larger refactoring and added avoidlist

This commit is contained in:
Myx
2023-10-21 05:09:38 +02:00
parent ccf7a218fd
commit 8fd3eeae03
30 changed files with 753 additions and 213 deletions

View File

@@ -0,0 +1,11 @@
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.');
}